home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / lisp / loaddefs.el < prev    next >
Lisp/Scheme  |  1993-08-10  |  242KB  |  5,370 lines

  1. ;;; loaddefs.el --- define standard autoloads and keys of other files
  2.  
  3. ;; Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  27. ;;; Special formatting conventions are used in this file!
  28. ;;;
  29. ;;; a backslash-newline is used at the beginning of a documentation string
  30. ;;; when that string should be stored in the file etc/DOCnnn, not in core.
  31. ;;;
  32. ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
  33. ;;;
  34. ;;; But you must obey certain rules to make sure the string is understood
  35. ;;; and goes into etc/DOCnnn properly.  Otherwise, the string will not go
  36. ;;; anywhere!
  37. ;;;
  38. ;;; The doc string must appear in the standard place in a call to
  39. ;;; defun, autoload, defvar or defconst.  No Lisp macros are recognized.
  40. ;;; The open-paren starting the definition must appear in column 0.
  41. ;;;
  42. ;;; In defvar and defconst, there is an additional rule:
  43. ;;; The double-quote that starts the string must be on the same
  44. ;;; line as the defvar or defconst.
  45. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  46.  
  47. ;;; **********************************************************************
  48. ;;; You should never need to write autoloads by hand and put them here.
  49. ;;;
  50. ;;; It is no longer necessary.  Instead use autoload.el to maintain them
  51. ;;; for you.  Just insert ";;;###autoload" before defuns or defmacros you
  52. ;;; want to be autoloaded, or other forms you want copied into loaddefs.el
  53. ;;; (defvars, key definitions, etc.).  For example, 
  54. ;;;    ;;;###autoload
  55. ;;;    (defun foobar () ....)
  56. ;;;    ;;;###autoload (define-key global-map "f" 'foobar)
  57. ;;;    ;;;###autoload
  58. ;;;    (defvar foobar-var nil "\
  59. ;;;    This is foobar-var's doc-string.")
  60. ;;;
  61. ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
  62. ;;;
  63. ;;; You can also use M-x update-directory-autoloads to update the autoloads
  64. ;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
  65. ;;; update-autoloads-here to update the autoloads for each file that
  66. ;;; already has an autoload section in this file.
  67. ;;; **********************************************************************
  68.  
  69. ;;; Code:
  70.  
  71. ;;; This code was NOT generated by autoload.el.
  72.  
  73. (defconst mode-line-buffer-identification (purecopy '("Emacs: %12b"))
  74.   "Mode-line control for identifying the buffer being displayed.
  75. Its default value is \"Emacs: %12b\".  Major modes that edit things
  76. other than ordinary files may change this (e.g. Info, Dired,...)")
  77.  
  78. (make-variable-buffer-local 'mode-line-buffer-identification)
  79.  
  80. (defconst mode-line-process nil
  81.   "Mode-line control for displaying info on process status.
  82. Normally nil in most modes, since there is no process to display.")
  83.  
  84. (make-variable-buffer-local 'mode-line-process)
  85.  
  86. (defconst mode-line-modified (purecopy '("--%1*%1*-"))
  87.   "Mode-line control for displaying whether current buffer is modified.")
  88.  
  89. (make-variable-buffer-local 'mode-line-modified)
  90.  
  91. (setq-default mode-line-format
  92.   (list (purecopy "")
  93.    'mode-line-modified
  94.    'mode-line-buffer-identification
  95.    (purecopy "   ")
  96.    'global-mode-string
  97.    (purecopy "   %[(")
  98.    'mode-name 'minor-mode-alist "%n" 'mode-line-process
  99.    (purecopy ")%]--")
  100.    (purecopy '(line-number-mode "L%l--"))
  101.    (purecopy '(-3 . "%p"))
  102.    (purecopy "-%-")))
  103.  
  104. (defvar minor-mode-alist nil "\
  105. Alist saying how to show minor modes in the mode line.
  106. Each element looks like (VARIABLE STRING);
  107. STRING is included in the mode line iff VARIABLE's value is non-nil.
  108.  
  109. Actually, STRING need not be a string; any possible mode-line element
  110. is okay.  See `mode-line-format'.")
  111. (setq minor-mode-alist (mapcar 'purecopy
  112.                    '((abbrev-mode " Abbrev")
  113.                  (overwrite-mode overwrite-mode)
  114.                  (auto-fill-function " Fill")
  115.                  ;; not really a minor mode...
  116.                  (defining-kbd-macro " Def"))))
  117.  
  118. ;; These variables are used by autoloadable packages.
  119. ;; They are defined here so that they do not get overridden
  120. ;; by the loading of those packages.
  121.  
  122. ;; Names in directory that end in one of these
  123. ;; are ignored in completion,
  124. ;; making it more likely you will get a unique match.
  125. (setq completion-ignored-extensions
  126.       (if (eq system-type 'vax-vms)
  127.       '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
  128.         ".dvi" ".toc" ".log" ".aux"
  129.         ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
  130.         ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")
  131.     '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
  132.       ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  133.       ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt")))
  134.  
  135. (make-variable-buffer-local 'indent-tabs-mode)
  136.  
  137. ;; This is here to avoid autoloading etags on M-TAB.
  138. ;; M-x visit-tags-table will autoload etags, which will redefine complete-tag.
  139. (defun complete-tag ()
  140.   "Perform tags completion on the text around point.
  141. Completes to the set of names listed in the current tags table.  
  142. The string to complete is chosen in the same way as the default
  143. for \\[find-tag] (which see)."
  144.   (interactive)
  145.   (error (substitute-command-keys
  146.       "No tags table loaded.  Try \\[visit-tags-table].")))
  147.  
  148. ;; Reduce total amount of space we must allocate during this function
  149. ;; that we will not need to keep permanently.
  150. (garbage-collect)
  151.  
  152. (define-key ctl-x-map "n" (make-sparse-keymap))
  153. (define-key ctl-x-map "r" (make-sparse-keymap))
  154.  
  155. ;These commands are defined in editfns.c
  156. ;but they are not assigned to keys there.
  157. (put 'narrow-to-region 'disabled t)
  158. (define-key ctl-x-map "nn" 'narrow-to-region)
  159. (define-key ctl-x-map "nw" 'widen)
  160. ;; (define-key ctl-x-map "n" 'narrow-to-region)
  161. ;; (define-key ctl-x-map "w" 'widen)
  162.  
  163. (define-key global-map "\C-j" 'newline-and-indent)
  164. (define-key global-map "\C-m" 'newline)
  165. (define-key global-map "\C-o" 'open-line)
  166. (define-key esc-map "\C-o" 'split-line)
  167. (define-key global-map "\C-q" 'quoted-insert)
  168. (define-key esc-map "^" 'delete-indentation)
  169. (define-key esc-map "\\" 'delete-horizontal-space)
  170. (define-key esc-map "m" 'back-to-indentation)
  171. (define-key ctl-x-map "\C-o" 'delete-blank-lines)
  172. (define-key esc-map " " 'just-one-space)
  173. (define-key esc-map "z" 'zap-to-char)
  174. (define-key esc-map "=" 'count-lines-region)
  175. (define-key ctl-x-map "=" 'what-cursor-position)
  176. ;; This key sequence might cause a certain amount of trouble with function
  177. ;; keys.  Namely, it means you can't bind ESC followed by a function key.
  178. ;; However, people might not mind that too terribly much.
  179. ;; So I will leave this alone for now.
  180. (define-key esc-map "\e" 'eval-expression)
  181. ;; Changed from C-x ESC so that function keys work following C-x.
  182. (define-key ctl-x-map "\e\e" 'repeat-complex-command)
  183. (define-key ctl-x-map "u" 'advertised-undo)
  184. ;; Many people are used to typing C-/ on X terminals and getting C-_.
  185. (define-key global-map [?\C-/] 'undo)
  186. (define-key global-map "\C-_" 'undo)
  187. (define-key esc-map "!" 'shell-command)
  188. (define-key esc-map "|" 'shell-command-on-region)
  189.  
  190. (define-key global-map "\C-u" 'universal-argument)
  191. (let ((i ?0))
  192.   (while (<= i ?9)
  193.     (define-key esc-map (char-to-string i) 'digit-argument)
  194.     (setq i (1+ i))))
  195. (define-key esc-map "-" 'negative-argument)
  196. ;; Define control-digits.
  197. (let ((i ?0))
  198.   (while (<= i ?9)
  199.     (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  200.     (setq i (1+ i))))
  201. (define-key global-map [?\C--] 'negative-argument)
  202. ;; Define control-meta-digits.
  203. (let ((i ?0))
  204.   (while (<= i ?9)
  205.     (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  206.     (setq i (1+ i))))
  207. (define-key global-map [?\C-\M--] 'negative-argument)
  208.  
  209. (define-key global-map "\C-k" 'kill-line)
  210. (define-key global-map "\C-w" 'kill-region)
  211. (define-key esc-map "w" 'kill-ring-save)
  212. (define-key esc-map "\C-w" 'append-next-kill)
  213. (define-key global-map "\C-y" 'yank)
  214. (define-key esc-map "y" 'yank-pop)
  215.  
  216. ;; (define-key ctl-x-map "a" 'append-to-buffer)
  217.  
  218. (define-key global-map "\C-@" 'set-mark-command)
  219. ;; Many people are used to typing C-SPC and getting C-@.
  220. (define-key global-map [?\C-\ ] 'set-mark-command)
  221. (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
  222.  
  223. (define-key global-map "\C-n" 'next-line)
  224. (define-key global-map "\C-p" 'previous-line)
  225. (define-key ctl-x-map "\C-n" 'set-goal-column)
  226.  
  227. ;;(defun function-key-error ()
  228. ;;  (interactive)
  229. ;;  (error "That function key is not bound to anything."))
  230.  
  231. ;; natural bindings for terminal keycaps --- defined in X keysym order
  232. (define-key global-map [home]        'beginning-of-buffer)
  233. (define-key global-map [left]        'backward-char)
  234. (define-key global-map [up]        'previous-line)
  235. (define-key global-map [right]        'forward-char)
  236. (define-key global-map [down]        'next-line)
  237. (define-key global-map [prior]        'scroll-down)
  238. (define-key global-map [next]        'scroll-up)
  239. (define-key global-map [M-next]        'scroll-other-window)
  240. (define-key global-map [end]        'end-of-buffer)
  241. (define-key global-map [begin]        'beginning-of-buffer)
  242. ;; (define-key global-map [select]        'function-key-error)
  243. ;; (define-key global-map [print]        'function-key-error)
  244. (define-key global-map [execute]    'execute-extended-command)
  245. (define-key global-map [insert]        'overwrite-mode)
  246. (define-key global-map [undo]        'undo)
  247. (define-key global-map [redo]        'repeat-complex-command)
  248. ;; (define-key global-map [clearline]    'function-key-error)
  249. (define-key global-map [insertline]    'open-line)
  250. (define-key global-map [deleteline]    'kill-line)
  251. ;; (define-key global-map [insertchar]    'function-key-error)
  252. (define-key global-map [deletechar]    'delete-char)
  253. ;; (define-key global-map [backtab]    'function-key-error)
  254. ;; (define-key global-map [f1]        'function-key-error)
  255. ;; (define-key global-map [f2]        'function-key-error)
  256. ;; (define-key global-map [f3]        'function-key-error)
  257. ;; (define-key global-map [f4]        'function-key-error)
  258. ;; (define-key global-map [f5]        'function-key-error)
  259. ;; (define-key global-map [f6]        'function-key-error)
  260. ;; (define-key global-map [f7]        'function-key-error)
  261. ;; (define-key global-map [f8]        'function-key-error)
  262. ;; (define-key global-map [f9]        'function-key-error)
  263. ;; (define-key global-map [f10]        'function-key-error)
  264. ;; (define-key global-map [f11]        'function-key-error)
  265. ;; (define-key global-map [f12]        'function-key-error)
  266. ;; (define-key global-map [f13]        'function-key-error)
  267. ;; (define-key global-map [f14]        'function-key-error)
  268. ;; (define-key global-map [f15]        'function-key-error)
  269. ;; (define-key global-map [f16]        'function-key-error)
  270. ;; (define-key global-map [f17]        'function-key-error)
  271. ;; (define-key global-map [f18]        'function-key-error)
  272. ;; (define-key global-map [f19]        'function-key-error)
  273. ;; (define-key global-map [f20]        'function-key-error)
  274. ;; (define-key global-map [f21]        'function-key-error)
  275. ;; (define-key global-map [f22]        'function-key-error)
  276. ;; (define-key global-map [f23]        'function-key-error)
  277. ;; (define-key global-map [f24]        'function-key-error)
  278. ;; (define-key global-map [f25]        'function-key-error)
  279. ;; (define-key global-map [f26]        'function-key-error)
  280. ;; (define-key global-map [f27]        'function-key-error)
  281. ;; (define-key global-map [f28]        'function-key-error)
  282. ;; (define-key global-map [f29]        'function-key-error)
  283. ;; (define-key global-map [f30]        'function-key-error)
  284. ;; (define-key global-map [f31]        'function-key-error)
  285. ;; (define-key global-map [f32]        'function-key-error)
  286. ;; (define-key global-map [f33]        'function-key-error)
  287. ;; (define-key global-map [f34]        'function-key-error)
  288. ;; (define-key global-map [f35]        'function-key-error)
  289. ;; (define-key global-map [kp-backtab]    'function-key-error)
  290. ;; (define-key global-map [kp-space]    'function-key-error)
  291. ;; (define-key global-map [kp-tab]        'function-key-error)
  292. ;; (define-key global-map [kp-enter]    'function-key-error)
  293. ;; (define-key global-map [kp-f1]        'function-key-error)
  294. ;; (define-key global-map [kp-f2]        'function-key-error)
  295. ;; (define-key global-map [kp-f3]        'function-key-error)
  296. ;; (define-key global-map [kp-f4]        'function-key-error)
  297. ;; (define-key global-map [kp-multiply]    'function-key-error)
  298. ;; (define-key global-map [kp-add]        'function-key-error)
  299. ;; (define-key global-map [kp-separator]    'function-key-error)
  300. ;; (define-key global-map [kp-subtract]    'function-key-error)
  301. ;; (define-key global-map [kp-decimal]    'function-key-error)
  302. ;; (define-key global-map [kp-divide]    'function-key-error)
  303. ;; (define-key global-map [kp-0]        'function-key-error)
  304. ;; (define-key global-map [kp-1]        'function-key-error)
  305. ;; (define-key global-map [kp-2]        'function-key-error)
  306. ;; (define-key global-map [kp-3]        'function-key-error)
  307. ;; (define-key global-map [kp-4]        'function-key-error)
  308. ;; (define-key global-map [kp-5]        'recenter)
  309. ;; (define-key global-map [kp-6]        'function-key-error)
  310. ;; (define-key global-map [kp-7]        'function-key-error)
  311. ;; (define-key global-map [kp-8]        'function-key-error)
  312. ;; (define-key global-map [kp-9]        'function-key-error)
  313. ;; (define-key global-map [kp-equal]    'function-key-error)
  314.  
  315. (define-key global-map "\C-t" 'transpose-chars)
  316. (define-key esc-map "t" 'transpose-words)
  317. (define-key esc-map "\C-t" 'transpose-sexps)
  318. (define-key ctl-x-map "\C-t" 'transpose-lines)
  319.  
  320. (define-key esc-map ";" 'indent-for-comment)
  321. (define-key esc-map "j" 'indent-new-comment-line)
  322. (define-key esc-map "\C-j" 'indent-new-comment-line)
  323. (define-key ctl-x-map ";" 'set-comment-column)
  324. (define-key ctl-x-map "f" 'set-fill-column)
  325. (define-key ctl-x-map "$" 'set-selective-display)
  326.  
  327. (define-key esc-map "@" 'mark-word)
  328. (define-key esc-map "f" 'forward-word)
  329. (define-key esc-map "b" 'backward-word)
  330. (define-key esc-map "d" 'kill-word)
  331. (define-key esc-map "\177" 'backward-kill-word)
  332.  
  333. (define-key esc-map "<" 'beginning-of-buffer)
  334. (define-key esc-map ">" 'end-of-buffer)
  335. (define-key ctl-x-map "h" 'mark-whole-buffer)
  336. (define-key esc-map "\\" 'delete-horizontal-space)
  337.  
  338. (defalias 'mode-specific-command-prefix (make-sparse-keymap))
  339. (defconst mode-specific-map (symbol-function 'mode-specific-command-prefix)
  340.   "Keymap for characters following C-c.")
  341. (define-key global-map "\C-c" 'mode-specific-command-prefix)
  342.  
  343. (global-set-key [M-right]  'forward-word)
  344. (global-set-key [M-left]   'backward-word)
  345.  
  346. (define-key esc-map "\C-f" 'forward-sexp)
  347. (define-key esc-map "\C-b" 'backward-sexp)
  348. (define-key esc-map "\C-u" 'backward-up-list)
  349. (define-key esc-map "\C-@" 'mark-sexp)
  350. (define-key esc-map [?\C-\ ] 'mark-sexp)
  351. (define-key esc-map "\C-d" 'down-list)
  352. (define-key esc-map "\C-k" 'kill-sexp)
  353. (define-key esc-map "\C-n" 'forward-list)
  354. (define-key esc-map "\C-p" 'backward-list)
  355. (define-key esc-map "\C-a" 'beginning-of-defun)
  356. (define-key esc-map "\C-e" 'end-of-defun)
  357. (define-key esc-map "\C-h" 'mark-defun)
  358. (define-key esc-map "(" 'insert-parentheses)
  359. (define-key esc-map ")" 'move-past-close-and-reindent)
  360. (define-key esc-map "\t" 'lisp-complete-symbol)
  361.  
  362. (define-key ctl-x-map "\C-e" 'eval-last-sexp)
  363.  
  364. (define-key ctl-x-map "r\C-@" 'point-to-register)
  365. (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
  366. (define-key ctl-x-map "r " 'point-to-register)
  367. (define-key ctl-x-map "rj" 'jump-to-register)
  368. (define-key ctl-x-map "rs" 'copy-to-register)
  369. (define-key ctl-x-map "rx" 'copy-to-register)
  370. (define-key ctl-x-map "ri" 'insert-register)
  371. (define-key ctl-x-map "rg" 'insert-register)
  372. (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
  373. (define-key ctl-x-map "rk" 'kill-rectangle)
  374. (define-key ctl-x-map "ry" 'yank-rectangle)
  375. (define-key ctl-x-map "ro" 'open-rectangle)
  376. (define-key ctl-x-map "rt" 'fill-rectangle)
  377. (define-key ctl-x-map "rw" 'window-configuration-to-register)
  378. (define-key ctl-x-map "rf" 'frame-configuration-to-register)
  379.  
  380. (define-key ctl-x-map "/" 'point-to-register)
  381. (define-key ctl-x-map "j" 'jump-to-register)
  382. (define-key ctl-x-map "x" 'copy-to-register)
  383. (define-key ctl-x-map "g" 'insert-register)
  384. ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
  385.  
  386. (define-key esc-map "q" 'fill-paragraph)
  387. ;; (define-key esc-map "g" 'fill-region)
  388. (define-key ctl-x-map "." 'set-fill-prefix)
  389.  
  390. (define-key esc-map "{" 'backward-paragraph)
  391. (define-key esc-map "}" 'forward-paragraph)
  392. (define-key esc-map "h" 'mark-paragraph)
  393. (define-key esc-map "a" 'backward-sentence)
  394. (define-key esc-map "e" 'forward-sentence)
  395. (define-key esc-map "k" 'kill-sentence)
  396. (define-key ctl-x-map "\177" 'backward-kill-sentence)
  397.  
  398. (define-key ctl-x-map "[" 'backward-page)
  399. (define-key ctl-x-map "]" 'forward-page)
  400. (define-key ctl-x-map "\C-p" 'mark-page)
  401. (define-key ctl-x-map "l" 'count-lines-page)
  402. (define-key ctl-x-map "np" 'narrow-to-page)
  403. ;; (define-key ctl-x-map "p" 'narrow-to-page)
  404.  
  405. (define-key ctl-x-map "al" 'add-mode-abbrev)
  406. (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
  407. (define-key ctl-x-map "ag" 'add-global-abbrev)
  408. (define-key ctl-x-map "a+" 'add-mode-abbrev)
  409. (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
  410. (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
  411. ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
  412. (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
  413. (define-key ctl-x-map "ae" 'expand-abbrev)
  414. (define-key ctl-x-map "a'" 'expand-abbrev)
  415. ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
  416. ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
  417. ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
  418. ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
  419. (define-key esc-map "'" 'abbrev-prefix-mark)
  420. (define-key ctl-x-map "'" 'expand-abbrev)
  421.  
  422.  
  423. ;;; Generated autoloads follow (made by autoload.el).
  424.  
  425. ;;; To sort them, execute the following after narrowing
  426. ;;; to a region starting just after the following formfeed (control-l)
  427. ;;; and ending just after the last formfeed in the file.
  428.  
  429. ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^ ]* " "\\1"
  430. ;;;            (point-min) (point-max))
  431.  
  432. ;;;### (autoloads (change-log-mode add-change-log-entry-other-window add-change-log-entry find-change-log) "add-log" "add-log.el" (11318 13833))
  433. ;;; Generated autoloads from add-log.el
  434.  
  435. (defvar change-log-default-name nil "\
  436. *Name of a change log file for \\[add-change-log-entry].")
  437.  
  438. (autoload (quote find-change-log) "add-log" "\
  439. Find a change log file for \\[add-change-log-entry] and return the name.
  440. Optional arg FILE-NAME is a name to try first.
  441. If FILE-NAME is nil, use the value of `change-log-default-name' if non-nil.
  442. Failing that, use \"ChangeLog\" in the current directory.
  443. If the file does not exist in the named directory, successive parent
  444. directories are tried.
  445.  
  446. Once a file is found, `change-log-default-name' is set locally in the
  447. current buffer to the complete file name." nil nil)
  448.  
  449. (autoload (quote add-change-log-entry) "add-log" "\
  450. Find change log file and add an entry for today.
  451. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  452. Second arg is file name of change log.  If nil, uses `change-log-default-name'.
  453. Third arg OTHER-WINDOW non-nil means visit in other window." t nil)
  454.  
  455. (autoload (quote add-change-log-entry-other-window) "add-log" "\
  456. Find change log file in other window and add an entry for today.
  457. First arg (interactive prefix) non-nil means prompt for user name and site.
  458. Second arg is file name of change log.
  459. Interactively, with a prefix argument, the file name is prompted for." t nil)
  460. (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
  461.  
  462. (autoload (quote change-log-mode) "add-log" "\
  463. Major mode for editing change logs; like Indented Text Mode.
  464. Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
  465. New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
  466. Each entry behaves as a paragraph, and the entries for one day as a page.
  467. Runs `change-log-mode-hook'." t nil)
  468.  
  469. ;;;***
  470.  
  471. ;;;### (autoloads (ad-start-advice defadvice ad-add-advice) "advice" "advice.el" (11335 1783))
  472. ;;; Generated autoloads from advice.el
  473.  
  474. (defvar ad-start-advice-on-load t "\
  475. *Non-NIL will start advice magic when this file gets loaded.
  476. Also see function `ad-start-advice'.")
  477.  
  478. (defvar ad-activate-on-definition nil "\
  479. *Non-NIL means automatic advice activation at function definition.
  480. Set this variable to t if you want to enable forward advice (which is
  481. automatic advice activation of a previously undefined function at the
  482. point the function gets defined/loaded/autoloaded). The value of this
  483. variable takes effect only during the execution of `ad-start-advice'. 
  484. If non-NIL it will enable definition hooks regardless of the value
  485. of `ad-enable-definition-hooks'.")
  486.  
  487. (defvar ad-redefinition-action (quote warn) "\
  488. *Defines what to do with redefinitions during de/activation.
  489. Redefinition occurs if a previously activated function that already has an
  490. original definition associated with it gets redefined and then de/activated.
  491. In such a case we can either accept the current definition as the new
  492. original definition, discard the current definition and replace it with the
  493. old original, or keep it and raise an error. The values `accept', `discard',
  494. `error' or `warn' govern what will be done. `warn' is just like `accept' but
  495. it additionally prints a warning message. All other values will be
  496. interpreted as `error'.")
  497.  
  498. (defvar ad-definition-hooks nil "\
  499. *List of hooks to be run after a function definition.
  500. The variable `ad-defined-function' will be bound to the name of
  501. the currently defined function when the hook function is run.")
  502.  
  503. (defvar ad-enable-definition-hooks nil "\
  504. *Non-NIL will enable hooks to be run on function definition.
  505. Setting this variable is a noop unless the value of
  506. `ad-activate-on-definition' (which see) is NIL.")
  507.  
  508. (defvar ad-use-jwz-byte-compiler (fboundp (quote eval-when-compile)) "\
  509. *Non-NIL means Jamie Zawinski's v19 byte-compiler will be used.
  510. If you use a v18 Emacs and don't use jwz's optimizing byte-compiler (the
  511. normal case) then this variable should be NIL, because otherwise
  512. enabling definition hooks (e.g., for forward advice) will redefine the 
  513. `byte-code' subr which will lead to some performance degradation for
  514. byte-compiled code.")
  515.  
  516. (autoload (quote ad-add-advice) "advice" "\
  517. Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
  518. If FUNCTION already has one or more pieces of advice of the specified
  519. CLASS then POSITION determines where the new piece will go. The value
  520. of POSITION can either be `first', `last' or a number where 0 corresponds
  521. to `first'. Numbers outside the range will be mapped to the closest
  522. extreme position. If there was already a piece of ADVICE with the same
  523. name, then the position argument will be ignored and the old advice
  524. will be overwritten with the new one.
  525.     If the FUNCTION was not advised already, then its advice info will be 
  526. initialized. Redefining a piece of advice whose name is part of the cache-id
  527. will clear the cache." nil nil)
  528.  
  529. (autoload (quote defadvice) "advice" "\
  530. Defines a piece of advice for FUNCTION (a symbol).
  531.  
  532.   (defadvice <function> (<class> <name> [<position>] [<arglist>] {<flags>}*)
  533.     [ [<documentation-string>] [<interactive-form>] ]
  534.     {<body-form>}* )
  535.  
  536. <function> ::= name of the function to be advised
  537. <class> ::= before | around | after | activation | deactivation
  538. <name> ::= non-NIL symbol that names this piece of advice
  539. <position> ::= first | last | <number> (optional, defaults to `first',
  540.     see also `ad-add-advice')
  541. <arglist> ::= an optional argument list to be used for the advised function
  542.     instead of the argument list of the original. The first one found in
  543.     before/around/after advices will be used.
  544. <flags> ::= protect | disable | activate | compile | preactivate
  545.     All flags can be specified with unambiguous initial substrings.
  546. <documentation-string> ::= optional documentation for this piece of advice
  547. <interactive-form> ::= optional interactive form to be used for the advised
  548.     function. The first one found in before/around/after advices will be used.
  549. <body-form> ::= any s-expression
  550.  
  551. Semantics of the various flags:
  552. `protect': The piece of advice will be protected against non-local exits in
  553. any code that precedes it. If any around advice of a function is protected
  554. then automatically all around advices will be protected (the complete onion).
  555.  
  556. `activate': All advice of FUNCTION will be activated immediately if
  557. FUNCTION has been properly defined prior to the defadvice.
  558.  
  559. `compile': In conjunction with `activate' specifies that the resulting
  560. advised function should be compiled.
  561.  
  562. `disable': The defined advice will be disabled, hence it will not be used 
  563. during activation until somebody enables it.
  564.  
  565. `preactivate': Preactivates the advised FUNCTION at macro expansion/compile
  566. time. This generates a compiled advised definition according to the current
  567. advice state that will be used during activation if appropriate. Only use
  568. this if the defadvice gets actually compiled (with a v18 byte-compiler put
  569. the defadvice into the body of a defun).
  570.  
  571. Look at the file advice.el for comprehensive documentation." nil t)
  572.  
  573. (autoload (quote ad-start-advice) "advice" "\
  574. Redefines some primitives to start the advice magic.
  575. If `ad-activate-on-definition' is t then advice information will
  576. automatically get activated whenever an advised function gets defined or
  577. redefined.  This will enable goodies such as forward advice and
  578. automatically enable function definition hooks. If its value is nil but
  579. the value of `ad-enable-definition-hooks' is t then definition hooks
  580. will be enabled without having automatic advice activation, otherwise
  581. function definition hooks will be disabled too. If definition hooks are
  582. enabled then functions stored in `ad-definition-hooks' are run whenever
  583. a function gets defined or redefined." t nil)
  584.  
  585. ;;;***
  586.  
  587. ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "ange-ftp.el" (11336 60199))
  588. ;;; Generated autoloads from ange-ftp.el
  589.  
  590. (autoload (quote ange-ftp-hook-function) "ange-ftp" nil nil nil)
  591.  
  592. (or (assoc "^/[^/:]*\\([^/:]:\\|\\'\\)" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*\\([^/:]:\\|\\'\\)" . ange-ftp-hook-function)) file-name-handler-alist)))
  593.  
  594. ;;;***
  595.  
  596. ;;;### (autoloads (appt-make-list) "appt" "appt.el" (10941 42374))
  597. ;;; Generated autoloads from appt.el
  598.  
  599. (defvar appt-issue-message t "\
  600. *Non-nil means check for appointments in the diary buffer.
  601. To be detected, the diary entry must have the time
  602. as the first thing on a line.")
  603.  
  604. (defvar appt-message-warning-time 10 "\
  605. *Time in minutes before an appointment that the warning begins.")
  606.  
  607. (defvar appt-audible t "\
  608. *Non-nil means beep to indicate appointment.")
  609.  
  610. (defvar appt-visible t "\
  611. *Non-nil means display appointment message in echo area.")
  612.  
  613. (defvar appt-display-mode-line t "\
  614. *Non-nil means display minutes to appointment and time on the mode line.")
  615.  
  616. (defvar appt-msg-window t "\
  617. *Non-nil means display appointment message in another window.")
  618.  
  619. (defvar appt-display-duration 5 "\
  620. *The number of seconds an appointment message is displayed.")
  621.  
  622. (defvar appt-display-diary t "\
  623. *Non-nil means to display the next days diary on the screen. 
  624. This will occur at midnight when the appointment list is updated.")
  625.  
  626. (autoload (quote appt-make-list) "appt" nil nil nil)
  627.  
  628. ;;;***
  629.  
  630. ;;;### (autoloads (super-apropos apropos) "apropos" "apropos.el" (11283 60450))
  631. ;;; Generated autoloads from apropos.el
  632.  
  633. (autoload (quote apropos) "apropos" "\
  634. Show all symbols whose names contain matches for REGEXP.
  635. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  636. showing key bindings.  Optional argument PRED is called with each symbol, and
  637. if it returns nil, the symbol is not shown.
  638.  
  639. Returns list of symbols and documentation found." t nil)
  640.  
  641. (autoload (quote super-apropos) "apropos" "\
  642. Show symbols whose names/documentation contain matches for REGEXP.
  643. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  644. showing key bindings and documentation that is not stored in the documentation
  645. file.
  646.  
  647. Returns list of symbols and documentation found." t nil)
  648.  
  649. ;;;***
  650.  
  651. ;;;### (autoloads (asm-mode) "asm-mode" "asm-mode.el" (11240 17420))
  652. ;;; Generated autoloads from asm-mode.el
  653.  
  654. (autoload (quote asm-mode) "asm-mode" "\
  655. Major mode for editing typical assembler code.
  656. Features a private abbrev table and the following bindings:
  657.  
  658. \\[asm-colon]    outdent a preceding label, tab to next tab stop.
  659. \\[tab-to-tab-stop]    tab to next tab stop.
  660. \\[asm-newline]    newline, then tab to next tab stop.
  661. \\[asm-comment]    smart placement of assembler comments.
  662.  
  663. The character used for making comments is set by the variable
  664. `asm-comment-char' (which defaults to `?;').
  665.  
  666. Alternatively, you may set this variable in `asm-set-comment-hook', which is
  667. called near the beginning of mode initialization.
  668.  
  669. Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
  670.  
  671. Special commands:\\{asm-mode-map}
  672. " t nil)
  673.  
  674. ;;;***
  675.  
  676. ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads) "autoload" "autoload.el" (11332 29335))
  677. ;;; Generated autoloads from autoload.el
  678.  
  679. (autoload (quote update-file-autoloads) "autoload" "\
  680. Update the autoloads for FILE in `generated-autoload-file'
  681. (which FILE might bind in its local variables)." t nil)
  682.  
  683. (autoload (quote update-autoloads-here) "autoload" "\
  684. Update sections of the current buffer generated by \\[update-file-autoloads]." t nil)
  685.  
  686. (autoload (quote update-directory-autoloads) "autoload" "\
  687. Run \\[update-file-autoloads] on each .el file in DIR." t nil)
  688.  
  689. (autoload (quote batch-update-autoloads) "autoload" "\
  690. Update the autoloads for the files or directories on the command line.
  691. Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads]
  692. on directories.  Must be used only with -batch, and kills Emacs on completion.
  693. Each file will be processed even if an error occurred previously.
  694. For example, invoke \"emacs -batch -f batch-update-autoloads *.el\"" nil nil)
  695.  
  696. ;;;***
  697.  
  698. ;;;### (autoloads (awk-mode) "awk-mode" "awk-mode.el" (11181 53242))
  699. ;;; Generated autoloads from awk-mode.el
  700.  
  701. (autoload (quote awk-mode) "awk-mode" "\
  702. Major mode for editing AWK code.
  703. This is much like C mode except for the syntax of comments.  It uses
  704. the same keymap as C mode and has the same variables for customizing
  705. indentation.  It has its own abbrev table and its own syntax table.
  706.  
  707. Turning on AWK mode calls the value of the variable `awk-mode-hook'
  708. with no args, if that value is non-nil." t nil)
  709.  
  710. ;;;***
  711.  
  712. ;;;### (autoloads (\`) "backquote" "backquote.el" (11285 49676))
  713. ;;; Generated autoloads from backquote.el
  714.  
  715. (autoload (quote \`) "backquote" "\
  716. (` FORM)  is a macro that expands to code to construct FORM.
  717. Note that this is very slow in interpreted code, but fast if you compile.
  718. FORM is one or more nested lists, which are `almost quoted':
  719. They are copied recursively, with non-lists used unchanged in the copy.
  720.  (` a b) == (list 'a 'b)  constructs a new list with two elements, `a' and `b'.
  721.  (` a (b c)) == (list 'a (list 'b 'c))  constructs two nested new lists.
  722.  
  723. However, certain special lists are not copied.  They specify substitution.
  724. Lists that look like (, EXP) are evaluated and the result is substituted.
  725.  (` a (, (+ x 5))) == (list 'a (+ x 5))
  726.  
  727. Elements of the form (,@ EXP) are evaluated and then all the elements
  728. of the result are substituted.  This result must be a list; it may
  729. be `nil'.
  730.  
  731. As an example, a simple macro `push' could be written:
  732.    (defmacro push (v l)
  733.         (` (setq (, l) (cons (,@ (list v l))))))
  734. or as
  735.    (defmacro push (v l)
  736.         (` (setq (, l) (cons (, v) (, l)))))
  737.  
  738. LIMITATIONS: \"dotted lists\" are not allowed in FORM.
  739. The ultimate cdr of each list scanned by ` must be `nil'.
  740. (This does not apply to constants inside expressions to be substituted.)
  741.  
  742. Substitution elements are not allowed as the cdr
  743. of a cons cell.  For example, (` (A . (, B))) does not work.
  744. Instead, write (` (A (,@ B))).
  745.  
  746. You cannot construct vectors, only lists.  Vectors are treated as
  747. constants.
  748.  
  749. BEWARE BEWARE BEWARE
  750. Inclusion of (,ATOM) rather than (, ATOM)
  751. or of (,@ATOM) rather than (,@ ATOM)
  752. will result in errors that will show up very late." nil t)
  753.  
  754. ;;;***
  755.  
  756. ;;;### (autoloads (bibtex-mode) "bibtex" "bibtex.el" (11287 29229))
  757. ;;; Generated autoloads from bibtex.el
  758.  
  759. (autoload (quote bibtex-mode) "bibtex" "\
  760. Major mode for editing bibtex files.
  761.  
  762. \\{bibtex-mode-map}
  763.  
  764. A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
  765.  
  766. The optional fields start with the string OPT, and thus ignored by BibTeX.
  767. The OPT string may be removed from a field with \\[bibtex-remove-OPT].
  768. \\[bibtex-kill-optional-field] kills the current optional field entirely.
  769. \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
  770. the current field.  \\[bibtex-empty-field] replaces the text of the current
  771. field with the default \"\".
  772.  
  773. The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
  774. double-quotes from entirely numerical fields, (ii) removes OPT from all
  775. non-empty optional fields, (iii) removes all empty optional fields, and (iv)
  776. checks that no non-optional fields are empty.
  777.  
  778. Use \\[bibtex-find-text] to position the dot at the end of the current field.
  779. Use \\[bibtex-next-field] to move to end of the next field.
  780.  
  781. The following may be of interest as well:
  782.  
  783.   Functions:
  784.     find-bibtex-duplicates
  785.     find-bibtex-entry-location
  786.     hide-bibtex-entry-bodies
  787.     sort-bibtex-entries
  788.     validate-bibtex-buffer
  789.  
  790.   Variables:
  791.     bibtex-clean-entry-zap-empty-opts
  792.     bibtex-entry-field-alist
  793.     bibtex-include-OPTannote
  794.     bibtex-include-OPTcrossref
  795.     bibtex-include-OPTkey
  796.     bibtex-maintain-sorted-entries
  797.     bibtex-mode-user-optional-fields
  798.  
  799. Fields:
  800.     address
  801.            Publisher's address
  802.     annote
  803.            Long annotation used for annotated bibliographies (begins sentence)
  804.     author
  805.            Name(s) of author(s), in BibTeX name format
  806.     booktitle
  807.            Book title when the thing being referenced isn't the whole book.
  808.            For book entries, the title field should be used instead.
  809.     chapter
  810.            Chapter number
  811.     crossref
  812.        The database key of the entry being cross referenced.
  813.     edition
  814.            Edition of a book (e.g., \"second\")
  815.     editor
  816.            Name(s) of editor(s), in BibTeX name format.
  817.            If there is also an author field, then the editor field should be
  818.            for the book or collection that the work appears in
  819.     howpublished
  820.             How something strange has been published (begins sentence)
  821.     institution
  822.            Sponsoring institution
  823.     journal
  824.            Journal name (macros are provided for many)
  825.     key
  826.            Alphabetizing and labeling key (needed when no author or editor)
  827.     month
  828.            Month (macros are provided)
  829.     note
  830.            To help the reader find a reference (begins sentence)
  831.     number
  832.            Number of a journal or technical report
  833.     organization
  834.            Organization (sponsoring a conference)
  835.     pages
  836.            Page number or numbers (use `--' to separate a range)
  837.     publisher
  838.            Publisher name
  839.     school
  840.            School name (for theses)
  841.     series
  842.            The name of a series or set of books.
  843.            An individual book will will also have it's own title
  844.     title
  845.            The title of the thing being referenced
  846.     type
  847.            Type of a technical report (e.g., \"Research Note\") to be used
  848.            instead of the default \"Technical Report\"
  849.     volume
  850.            Volume of a journal or multivolume work
  851.     year
  852.            Year---should contain only numerals
  853. ---------------------------------------------------------
  854. Entry to this mode calls the value of bibtex-mode-hook if that value is
  855. non-nil." t nil)
  856.  
  857. ;;;***
  858.  
  859. ;;;### (autoloads (blackbox) "blackbox" "blackbox.el" (11285 49689))
  860. ;;; Generated autoloads from blackbox.el
  861.  
  862. (autoload (quote blackbox) "blackbox" "\
  863. Play blackbox.  Optional prefix argument is the number of balls;
  864. the default is 4.
  865.  
  866. What is blackbox?
  867.  
  868. Blackbox is a game of hide and seek played on an 8 by 8 grid (the
  869. Blackbox).  Your opponent (Emacs, in this case) has hidden several
  870. balls (usually 4) within this box.  By shooting rays into the box and
  871. observing where they emerge it is possible to deduce the positions of
  872. the hidden balls.  The fewer rays you use to find the balls, the lower
  873. your score.
  874.  
  875. Overview of play:
  876.  
  877. \\<blackbox-mode-map>To play blackbox, type \\[blackbox].  An optional prefix argument
  878. specifies the number of balls to be hidden in the box; the default is
  879. four.
  880.  
  881. The cursor can be moved around the box with the standard cursor
  882. movement keys.
  883.  
  884. To shoot a ray, move the cursor to the edge of the box and press SPC.
  885. The result will be determined and the playfield updated.
  886.  
  887. You may place or remove balls in the box by moving the cursor into the
  888. box and pressing \\[bb-romp].
  889.  
  890. When you think the configuration of balls you have placed is correct,
  891. press \\[bb-done].  You will be informed whether you are correct or
  892. not, and be given your score.  Your score is the number of letters and
  893. numbers around the outside of the box plus five for each incorrectly
  894. placed ball.  If you placed any balls incorrectly, they will be
  895. indicated with `x', and their actual positions indicated with `o'.
  896.  
  897. Details:
  898.  
  899. There are three possible outcomes for each ray you send into the box:
  900.  
  901.     Detour: the ray is deflected and emerges somewhere other than
  902.         where you sent it in.  On the playfield, detours are
  903.         denoted by matching pairs of numbers -- one where the
  904.         ray went in, and the other where it came out.
  905.  
  906.     Reflection: the ray is reflected and emerges in the same place
  907.         it was sent in.  On the playfield, reflections are
  908.         denoted by the letter `R'.
  909.  
  910.     Hit:    the ray strikes a ball directly and is absorbed.  It does
  911.         not emerge from the box.  On the playfield, hits are
  912.         denoted by the letter `H'.
  913.  
  914. The rules for how balls deflect rays are simple and are best shown by
  915. example.
  916.  
  917. As a ray approaches a ball it is deflected ninety degrees.  Rays can
  918. be deflected multiple times.  In the diagrams below, the dashes
  919. represent empty box locations and the letter `O' represents a ball.
  920. The entrance and exit points of each ray are marked with numbers as
  921. described under \"Detour\" above.  Note that the entrance and exit
  922. points are always interchangeable.  `*' denotes the path taken by the
  923. ray.
  924.  
  925. Note carefully the relative positions of the ball and the ninety
  926. degree deflection it causes.
  927.  
  928.     1                                            
  929.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  930.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  931. 1 * * - - - - - -         - - - - - - - -         - O - - - - O -       
  932.   - - O - - - - -         - - O - - - - -         - - * * * * - -
  933.   - - - - - - - -         - - - * * * * * 2     3 * * * - - * - -
  934.   - - - - - - - -         - - - * - - - -         - - - O - * - -      
  935.   - - - - - - - -         - - - * - - - -         - - - - * * - -       
  936.   - - - - - - - -         - - - * - - - -         - - - - * - O -       
  937.                                 2                         3
  938.  
  939. As mentioned above, a reflection occurs when a ray emerges from the same point
  940. it was sent in.  This can happen in several ways:
  941.  
  942.                                                                            
  943.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  944.   - - - - O - - -         - - O - O - - -          - - - - - - - -
  945. R * * * * - - - -         - - - * - - - -          O - - - - - - -
  946.   - - - - O - - -         - - - * - - - -        R - - - - - - - -
  947.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  948.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  949.   - - - - - - - -       R * * * * - - - -          - - - - - - - -
  950.   - - - - - - - -         - - - - O - - -          - - - - - - - -
  951.  
  952. In the first example, the ray is deflected downwards by the upper
  953. ball, then left by the lower ball, and finally retraces its path to
  954. its point of origin.  The second example is similar.  The third
  955. example is a bit anomalous but can be rationalized by realizing the
  956. ray never gets a chance to get into the box.  Alternatively, the ray
  957. can be thought of as being deflected downwards and immediately
  958. emerging from the box.
  959.  
  960. A hit occurs when a ray runs straight into a ball:
  961.  
  962.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  963.   - - - - - - - -         - - - - - - - -          - - - - O - - -
  964.   - - - - - - - -         - - - - O - - -        H * * * * - - - -
  965.   - - - - - - - -       H * * * * O - - -          - - - * - - - -
  966.   - - - - - - - -         - - - - O - - -          - - - O - - - -
  967. H * * * O - - - -         - - - - - - - -          - - - - - - - -
  968.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  969.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  970.  
  971. Be sure to compare the second example of a hit with the first example of
  972. a reflection." t nil)
  973.  
  974. ;;;***
  975.  
  976. ;;;### (autoloads (batch-byte-compile display-call-tree byte-compile compile-defun byte-compile-file byte-recompile-directory) "bytecomp" "bytecomp.el" (11336 59225))
  977. ;;; Generated autoloads from bytecomp.el
  978.  
  979. (autoload (quote byte-recompile-directory) "bytecomp" "\
  980. Recompile every `.el' file in DIRECTORY that needs recompilation.
  981. This is if a `.elc' file exists but is older than the `.el' file.
  982.  
  983. If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
  984. But a prefix argument (optional second arg) means ask user,
  985. for each such `.el' file, whether to compile it.  Prefix argument 0 means
  986. don't ask and compile the file anyway." t nil)
  987.  
  988. (autoload (quote byte-compile-file) "bytecomp" "\
  989. Compile a file of Lisp code named FILENAME into a file of byte code.
  990. The output file's name is made by appending `c' to the end of FILENAME.
  991. With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
  992.  
  993. (autoload (quote compile-defun) "bytecomp" "\
  994. Compile and evaluate the current top-level form.
  995. Print the result in the minibuffer.
  996. With argument, insert value in current buffer after the form." t nil)
  997.  
  998. (autoload (quote byte-compile) "bytecomp" "\
  999. If FORM is a symbol, byte-compile its function definition.
  1000. If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
  1001.  
  1002. (autoload (quote display-call-tree) "bytecomp" "\
  1003. Display a call graph of a specified file.
  1004. This lists which functions have been called, what functions called
  1005. them, and what functions they call.  The list includes all functions
  1006. whose definitions have been compiled in this Emacs session, as well as
  1007. all functions called by those functions.
  1008.  
  1009. The call graph does not include macros, inline functions, or
  1010. primitives that the byte-code interpreter knows about directly (eq,
  1011. cons, etc.).
  1012.  
  1013. The call tree also lists those functions which are not known to be called
  1014. (that is, to which no calls have been compiled), and which cannot be
  1015. invoked interactively." t nil)
  1016.  
  1017. (autoload (quote batch-byte-compile) "bytecomp" "\
  1018. Run `byte-compile-file' on the files remaining on the command line.
  1019. Use this from the command line, with `-batch';
  1020. it won't work in an interactive Emacs.
  1021. Each file is processed even if an error occurred previously.
  1022. For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
  1023.  
  1024. ;;;***
  1025.  
  1026. ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar.el" (11327 35047))
  1027. ;;; Generated autoloads from calendar.el
  1028.  
  1029. (defvar view-diary-entries-initially nil "\
  1030. *If t, the diary entries for the current date will be displayed on entry.
  1031. The diary is displayed in another window when the calendar is first displayed,
  1032. if the current date is visible.  The number of days of diary entries displayed
  1033. is governed by the variable `number-of-diary-entries'.")
  1034.  
  1035. (defvar number-of-diary-entries 1 "\
  1036. *Specifies how many days of diary entries are to be displayed initially.
  1037. This variable affects the diary display when the command M-x diary is used,
  1038. or if the value of the variable `view-diary-entries-initially' is t.  For
  1039. example, if the default value 1 is used, then only the current day's diary
  1040. entries will be displayed.  If the value 2 is used, then both the current
  1041. day's and the next day's entries will be displayed.  The value can also be
  1042. a vector such as [0 2 2 2 2 4 1]; this value will cause no diary entries to
  1043. be displayed on Sunday, the current date's and the next day's diary entries
  1044. to be displayed Monday through Thursday, Friday through Monday's entries to
  1045. be displayed on Friday, and only Saturday's entries to be displayed on
  1046. Saturday.  This variable does not affect the diary display with the `d'
  1047. command from the calendar; in that case, the prefix argument controls the
  1048. number of days of diary entries displayed.")
  1049.  
  1050. (defvar mark-diary-entries-in-calendar nil "\
  1051. *If t, dates with diary entries will be marked in the calendar window.
  1052. The marking symbol is specified by the variable `diary-entry-marker'.")
  1053.  
  1054. (defvar diary-entry-marker "+" "\
  1055. *The symbol used to mark dates that have diary entries.")
  1056.  
  1057. (defvar view-calendar-holidays-initially nil "\
  1058. *If t, holidays for current three month period will be displayed on entry.
  1059. The holidays are displayed in another window when the calendar is first
  1060. displayed.")
  1061.  
  1062. (defvar mark-holidays-in-calendar nil "\
  1063. *If t, dates of holidays will be marked in the calendar window.
  1064. The marking symbol is specified by the variable `calendar-holiday-marker'.")
  1065.  
  1066. (defvar calendar-holiday-marker "*" "\
  1067. *The symbol used to mark notable dates in the calendar.")
  1068.  
  1069. (defvar all-hebrew-calendar-holidays nil "\
  1070. *If nil, show only major holidays from the Hebrew calendar.
  1071.  
  1072. If nil, the only holidays from the Hebrew calendar shown will be those days of
  1073. such major interest as to appear on secular calendars.
  1074.  
  1075. If t, the holidays shown in the calendar will include all special days that
  1076. would be shown on a complete Hebrew calendar.")
  1077.  
  1078. (defvar all-christian-calendar-holidays nil "\
  1079. *If nil, show only major holidays from the Christian calendar.
  1080.  
  1081. If nil, the only holidays from the Christian calendar shown will be those days
  1082. of such major interest as to appear on secular calendars.
  1083.  
  1084. If t, the holidays shown in the calendar will include all special days that
  1085. would be shown on a complete Christian calendar.")
  1086.  
  1087. (defvar all-islamic-calendar-holidays nil "\
  1088. *If nil, show only major holidays from the Islamic calendar.
  1089.  
  1090. If nil, the only holidays from the Islamic calendar shown will be those days
  1091. of such major interest as to appear on secular calendars.
  1092.  
  1093. If t, the holidays shown in the calendar will include all special days that
  1094. would be shown on a complete Islamic calendar.")
  1095.  
  1096. (defvar calendar-load-hook nil "\
  1097. *List of functions to be called after the calendar is first loaded.
  1098. This is the place to add key bindings to calendar-mode-map.")
  1099.  
  1100. (defvar initial-calendar-window-hook nil "\
  1101. *List of functions to be called when the calendar window is first opened.
  1102. The functions invoked are called after the calendar window is opened, but
  1103. once opened is never called again.  Leaving the calendar with the `q' command
  1104. and reentering it will cause these functions to be called again.")
  1105.  
  1106. (defvar today-visible-calendar-hook nil "\
  1107. *List of functions called whenever the current date is visible.
  1108. This can be used, for example, to replace today's date with asterisks; a
  1109. function `calendar-star-date' is included for this purpose:
  1110.     (setq today-visible-calendar-hook 'calendar-star-date)
  1111. It could also be used to mark the current date with `='; a function is also
  1112. provided for this:
  1113.     (setq today-visible-calendar-hook 'calendar-mark-today)
  1114.  
  1115. The corresponding variable `today-invisible-calendar-hook' is the list of
  1116. functions called when the calendar function was called when the current
  1117. date is not visible in the window.
  1118.  
  1119. Other than the use of the provided functions, the changing of any
  1120. characters in the calendar buffer by the hooks may cause the failure of the
  1121. functions that move by days and weeks.")
  1122.  
  1123. (defvar today-invisible-calendar-hook nil "\
  1124. *List of functions called whenever the current date is not visible.
  1125.  
  1126. The corresponding variable `today-visible-calendar-hook' is the list of
  1127. functions called when the calendar function was called when the current
  1128. date is visible in the window.
  1129.  
  1130. Other than the use of the provided functions, the changing of any
  1131. characters in the calendar buffer by the hooks may cause the failure of the
  1132. functions that move by days and weeks.")
  1133.  
  1134. (defvar diary-file "~/diary" "\
  1135. *Name of the file in which one's personal diary of dates is kept.
  1136.  
  1137. The file's entries are lines in any of the forms
  1138.  
  1139.             MONTH/DAY
  1140.             MONTH/DAY/YEAR
  1141.             MONTHNAME DAY
  1142.             MONTHNAME DAY, YEAR
  1143.             DAYNAME
  1144.  
  1145. at the beginning of the line; the remainder of the line is the diary entry
  1146. string for that date.  MONTH and DAY are one or two digit numbers, YEAR is
  1147. a number and may be written in full or abbreviated to the final two digits.
  1148. If the date does not contain a year, it is generic and applies to any year.
  1149. DAYNAME entries apply to any date on which is on that day of the week.
  1150. MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
  1151. characters (with or without a period), capitalized or not.  Any of DAY,
  1152. MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
  1153. respectively.
  1154.  
  1155. The European style (in which the day precedes the month) can be used
  1156. instead, if you execute `european-calendar' when in the calendar, or set
  1157. `european-calendar-style' to t in your .emacs file.  The European forms are
  1158.  
  1159.             DAY/MONTH
  1160.             DAY/MONTH/YEAR
  1161.             DAY MONTHNAME
  1162.             DAY MONTHNAME YEAR
  1163.             DAYNAME
  1164.  
  1165. To revert to the default American style from the European style, execute
  1166. `american-calendar' in the calendar.
  1167.  
  1168. A diary entry can be preceded by a diary-nonmarking-symbol (ordinarily `&')
  1169. to make that entry nonmarking--that is, it will not be marked on dates in
  1170. the calendar window but will appear in a diary window.
  1171.  
  1172. Multiline diary entries are made by indenting lines after the first with
  1173. either a TAB or one or more spaces.
  1174.  
  1175. Lines not in one the above formats are ignored.  Here are some sample diary
  1176. entries (in the default American style):
  1177.  
  1178.      12/22/1988 Twentieth wedding anniversary!!
  1179.      &1/1. Happy New Year!
  1180.      10/22 Ruth's birthday.
  1181.      21: Payday
  1182.      Tuesday--weekly meeting with grad students at 10am
  1183.               Supowit, Shen, Bitner, and Kapoor to attend.
  1184.      1/13/89 Friday the thirteenth!!
  1185.      &thu 4pm squash game with Lloyd.
  1186.      mar 16 Dad's birthday
  1187.      April 15, 1989 Income tax due.
  1188.      &* 15 time cards due.
  1189.  
  1190. If the first line of a diary entry consists only of the date or day name with
  1191. no trailing blanks or punctuation, then that line will not be displayed in the
  1192. diary window; only the continuation lines will be shown.  For example, the
  1193. single diary entry
  1194.  
  1195.      02/11/1989
  1196.       Bill Blattner visits Princeton today
  1197.       2pm Cognitive Studies Committee meeting
  1198.       2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
  1199.       4:00pm Jamie Tappenden
  1200.       7:30pm Dinner at George and Ed's for Alan Ryan
  1201.       7:30-10:00pm dance at Stewart Country Day School
  1202.  
  1203. will appear in the diary window without the date line at the beginning.  This
  1204. facility allows the diary window to look neater, but can cause confusion if
  1205. used with more than one day's entries displayed.
  1206.  
  1207. Diary entries can be based on Lisp sexps.  For example, the diary entry
  1208.  
  1209.       %%(diary-block 11 1 1990 11 10 1990) Vacation
  1210.  
  1211. causes the diary entry \"Vacation\" to appear from November 1 through November
  1212. 10, 1990.  Other functions available are `diary-float', `diary-anniversary',
  1213. `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
  1214. `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
  1215. `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
  1216. `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
  1217. `diary-sabbath-candles'.  See the documentation for the function
  1218. `list-sexp-diary-entries' for more details.
  1219.  
  1220. Diary entries based on the Hebrew and/or the Islamic calendar are also
  1221. possible, but because these are somewhat slow, they are ignored
  1222. unless you set the `nongregorian-diary-listing-hook' and the
  1223. `nongregorian-diary-marking-hook' appropriately.  See the documentation
  1224. for these functions for details.
  1225.  
  1226. Diary files can contain directives to include the contents of other files; for
  1227. details, see the documentation for the variable `list-diary-entries-hook'.")
  1228.  
  1229. (defvar diary-nonmarking-symbol "&" "\
  1230. *Symbol indicating that a diary entry is not to be marked in the calendar.")
  1231.  
  1232. (defvar hebrew-diary-entry-symbol "H" "\
  1233. *Symbol indicating a diary entry according to the Hebrew calendar.")
  1234.  
  1235. (defvar islamic-diary-entry-symbol "I" "\
  1236. *Symbol indicating a diary entry according to the Islamic calendar.")
  1237.  
  1238. (defvar diary-include-string "#include" "\
  1239. *The string indicating inclusion of another file of diary entries.
  1240. See the documentation for the function `include-other-diary-files'.")
  1241.  
  1242. (defvar sexp-diary-entry-symbol "%%" "\
  1243. *The string used to indicate a sexp diary entry in diary-file.
  1244. See the documentation for the function `list-sexp-diary-entries'.")
  1245.  
  1246. (defvar abbreviated-calendar-year t "\
  1247. *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
  1248. For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
  1249. If this variable is nil, years must be written in full.")
  1250.  
  1251. (defvar european-calendar-style nil "\
  1252. *Use the European style of dates in the diary and in any displays.
  1253. If this variable is t, a date 1/2/1990 would be interpreted as February 1,
  1254. 1990.  The accepted European date styles are
  1255.  
  1256.             DAY/MONTH
  1257.             DAY/MONTH/YEAR
  1258.             DAY MONTHNAME
  1259.             DAY MONTHNAME YEAR
  1260.             DAYNAME
  1261.  
  1262. Names can be capitalized or not, written in full, or abbreviated to three
  1263. characters with or without a period.")
  1264.  
  1265. (defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\
  1266. *List of pseudo-patterns describing the American patterns of date used.
  1267. See the documentation of diary-date-forms for an explanation.")
  1268.  
  1269. (defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\
  1270. *List of pseudo-patterns describing the European patterns of date used.
  1271. See the documentation of diary-date-forms for an explanation.")
  1272.  
  1273. (defvar diary-date-forms (if european-calendar-style european-date-diary-pattern american-date-diary-pattern) "\
  1274. *List of pseudo-patterns describing the forms of date used in the diary.
  1275. The patterns on the list must be MUTUALLY EXCLUSIVE and must should not match
  1276. any portion of the diary entry itself, just the date component.
  1277.  
  1278. A pseudo-pattern is a list of regular expressions and the keywords `month',
  1279. `day', `year', `monthname', and `dayname'.  The keyword `monthname' will
  1280. match the name of the month, capitalized or not, or its three-letter
  1281. abbreviation, followed by a period or not; it will also match `*'.
  1282. Similarly, `dayname' will match the name of the day, capitalized or not, or
  1283. its three-letter abbreviation, followed by a period or not.  The keywords
  1284. `month', `day', and `year' will match those numerical values, preceded by
  1285. arbitrarily many zeros; they will also match `*'.
  1286.  
  1287. The matching of the diary entries with the date forms is done with the
  1288. standard syntax table from Fundamental mode, but with the `*' changed so
  1289. that it is a word constituent.
  1290.  
  1291. If, to be mutually exclusive, a pseudo-pattern must match a portion of the
  1292. diary entry itself, the first element of the pattern MUST be `backup'.  This
  1293. directive causes the date recognizer to back up to the beginning of the
  1294. current word of the diary entry, so in no case can the pattern match more than
  1295. a portion of the first word of the diary entry.")
  1296.  
  1297. (defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\
  1298. *Pseudo-pattern governing the way a date appears in the European style.
  1299. See the documentation of calendar-date-display-forms for an explanation.")
  1300.  
  1301. (defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\
  1302. *Pseudo-pattern governing the way a date appears in the American style.
  1303. See the documentation of calendar-date-display-forms for an explanation.")
  1304.  
  1305. (defvar calendar-date-display-form (if european-calendar-style european-calendar-display-form american-calendar-display-form) "\
  1306. *Pseudo-pattern governing the way a date appears.
  1307.  
  1308. Used by the function `calendar-date-string', a pseudo-pattern is a list of
  1309. expressions that can involve the keywords `month', `day', and `year', all
  1310. numbers in string form, and `monthname' and `dayname', both alphabetic
  1311. strings.  For example, the ISO standard would use the pseudo- pattern
  1312.  
  1313.        '(year \"-\" month \"-\" day)
  1314.  
  1315. while a typical American form would be
  1316.  
  1317.        '(month \"/\" day \"/\" (substring year -2))
  1318.  
  1319. and
  1320.  
  1321.        '((format \"%9s, %9s %2s, %4s\" dayname monthname day year))
  1322.  
  1323. would give the usual American style in fixed-length fields.
  1324.  
  1325. See the documentation of the function `calendar-date-string'.")
  1326.  
  1327. (defvar print-diary-entries-hook (quote lpr-buffer) "\
  1328. *List of functions called after a temporary diary buffer is prepared.
  1329. The buffer shows only the diary entries currently visible in the diary
  1330. buffer.  The default just does the printing.  Other uses might include, for
  1331. example, rearranging the lines into order by day and time, saving the buffer
  1332. instead of deleting it, or changing the function used to do the printing.")
  1333.  
  1334. (defvar list-diary-entries-hook nil "\
  1335. *List of functions called after diary file is culled for relevant entries.
  1336. It is to be used for diary entries that are not found in the diary file.
  1337.  
  1338. A function `include-other-diary-files' is provided for use as the value of
  1339. this hook.  This function enables you to use shared diary files together
  1340. with your own.  The files included are specified in the diary-file by lines
  1341. of the form
  1342.  
  1343.         #include \"filename\"
  1344.  
  1345. This is recursive; that is, #include directives in files thus included are
  1346. obeyed.  You can change the \"#include\" to some other string by changing
  1347. the variable `diary-include-string'.  When you use `include-other-diary-files'
  1348. as part of the list-diary-entries-hook, you will probably also want to use the
  1349. function `mark-included-diary-files' as part of the mark-diary-entries-hook.
  1350.  
  1351. For example, you could use
  1352.  
  1353.      (setq list-diary-entries-hook
  1354.        '(include-other-diary-files sort-diary-entries))
  1355.      (setq diary-display-hook 'fancy-diary-display)
  1356.  
  1357. in your .emacs file to cause the fancy diary buffer to be displayed with
  1358. diary entries from various included files, each day's entries sorted into
  1359. lexicographic order.")
  1360.  
  1361. (defvar diary-display-hook (quote simple-diary-display) "\
  1362. *List of functions that handle the display of the diary.
  1363.  
  1364. Ordinarily, this just displays the diary buffer (with holidays indicated in
  1365. the mode line), if there are any relevant entries.  At the time these
  1366. functions are called, the variable `diary-entries-list' is a list, in order
  1367. by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
  1368. STRING), where string is the diary entry for the given date.  This can be
  1369. used, for example, to handle appointment notification, prepare a different
  1370. buffer for display (perhaps combined with holidays), or produce hard copy
  1371. output.
  1372.  
  1373. A function `fancy-diary-display' is provided as an alternative
  1374. choice for this hook; this function prepares a special noneditable diary
  1375. buffer with the relevant diary entries that has neat day-by-day arrangement
  1376. with headings.  The fancy diary buffer will show the holidays unless the
  1377. variable `holidays-in-diary-buffer' is set to nil.  Ordinarily, the fancy
  1378. diary buffer will not show days for which there are no diary entries, even
  1379. if that day is a holiday; if you want such days to be shown in the fancy
  1380. diary buffer, set the variable `diary-list-include-blanks' to t.")
  1381.  
  1382. (defvar nongregorian-diary-listing-hook nil "\
  1383. *List of functions called for listing diary file and included files.
  1384. As the files are processed for diary entries, these functions are used to cull
  1385. relevant entries.  You can use either or both of `list-hebrew-diary-entries'
  1386. and `list-islamic-diary-entries'.  The documentation for these functions
  1387. describes the style of such diary entries.")
  1388.  
  1389. (defvar mark-diary-entries-hook nil "\
  1390. *List of functions called after marking diary entries in the calendar.
  1391.  
  1392. A function `mark-included-diary-files' is also provided for use as the
  1393. mark-diary-entries-hook; it enables you to use shared diary files together
  1394. with your own.  The files included are specified in the diary-file by lines
  1395. of the form
  1396.         #include \"filename\"
  1397. This is recursive; that is, #include directives in files thus included are
  1398. obeyed.  You can change the \"#include\" to some other string by changing the
  1399. variable `diary-include-string'.  When you use `mark-included-diary-files' as
  1400. part of the mark-diary-entries-hook, you will probably also want to use the
  1401. function `include-other-diary-files' as part of the list-diary-entries-hook.")
  1402.  
  1403. (defvar nongregorian-diary-marking-hook nil "\
  1404. *List of functions called for marking diary file and included files.
  1405. As the files are processed for diary entries, these functions are used to cull
  1406. relevant entries.  You can use either or both of `mark-hebrew-diary-entries'
  1407. and `mark-islamic-diary-entries'.  The documentation for these functions
  1408. describes the style of such diary entries.")
  1409.  
  1410. (defvar diary-list-include-blanks nil "\
  1411. *If nil, do not include days with no diary entry in the list of diary entries.
  1412. Such days will then not be shown in the the fancy diary buffer, even if they
  1413. are holidays.")
  1414.  
  1415. (defvar holidays-in-diary-buffer t "\
  1416. *If t, the holidays will be indicated in the diary display.
  1417. The holidays will be given in the mode line of the diary buffer, or in the
  1418. fancy diary buffer next to the date.  This slows down the diary functions
  1419. somewhat; setting it to nil will make the diary display faster.")
  1420.  
  1421. (defvar general-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Ground Hog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fool's Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\
  1422. *General holidays.  Default value is for the United States.
  1423. See the documentation for `calendar-holidays' for details.")
  1424.  
  1425. (defvar local-holidays nil "\
  1426. *Local holidays.
  1427. See the documentation for `calendar-holidays' for details.")
  1428.  
  1429. (defvar other-holidays nil "\
  1430. *User defined holidays.
  1431. See the documentation for `calendar-holidays' for details.")
  1432.  
  1433. (defvar hebrew-holidays (quote ((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)")) (if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah")) (holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc)))) "\
  1434. *Jewish holidays.
  1435. See the documentation for `calendar-holidays' for details.")
  1436.  
  1437. (defvar christian-holidays (quote ((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent)) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas")))) "\
  1438. *Christian holidays.
  1439. See the documentation for `calendar-holidays' for details.")
  1440.  
  1441. (defvar islamic-holidays (quote ((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha")))) "\
  1442. *Islamic holidays.
  1443. See the documentation for `calendar-holidays' for details.")
  1444.  
  1445. (defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (progn (require (quote cal-dst)) (funcall (quote holiday-sexp) calendar-daylight-savings-starts (quote (format "Daylight Savings Time Begins %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-switchover-time (float 60)) date (quote standard)) ""))))) (funcall (quote holiday-sexp) calendar-daylight-savings-ends (quote (format "Daylight Savings Time Ends %s" (if (fboundp (quote atan)) (solar-time-string (/ (- calendar-daylight-savings-switchover-time calendar-daylight-time-offset) (float 60)) date (quote daylight)) "")))))) "\
  1446. *Sun-related holidays.
  1447. See the documentation for `calendar-holidays' for details.")
  1448.  
  1449. (autoload (quote calendar) "calendar" "\
  1450. Display a three-month calendar in another window.
  1451. The three months appear side by side, with the current month in the middle
  1452. surrounded by the previous and next months.  The cursor is put on today's date.
  1453.  
  1454. If called with an optional prefix argument, prompts for month and year.
  1455.  
  1456. This function is suitable for execution in a .emacs file; appropriate setting
  1457. of the variable `view-diary-entries-initially' will cause the diary entries for
  1458. the current date to be displayed in another window.  The value of the variable
  1459. `number-of-diary-entries' controls the number of days of diary entries
  1460. displayed upon initial display of the calendar.
  1461.  
  1462. An optional prefix argument ARG causes the calendar displayed to be ARG
  1463. months in the future if ARG is positive or in the past if ARG is negative;
  1464. in this case the cursor goes on the first day of the month.
  1465.  
  1466. Once in the calendar window, future or past months can be moved into view.
  1467. Arbitrary months can be displayed, or the calendar can be scrolled forward
  1468. or backward.
  1469.  
  1470. The cursor can be moved forward or backward by one day, one week, one month,
  1471. or one year.  All of these commands take prefix arguments which, when negative,
  1472. cause movement in the opposite direction.  For convenience, the digit keys
  1473. and the minus sign are automatically prefixes.  The window is replotted as
  1474. necessary to display the desired date.
  1475.  
  1476. Diary entries can be marked on the calendar or displayed in another window.
  1477.  
  1478. Use M-x describe-mode for details of the key bindings in the calendar window.
  1479.  
  1480. The Gregorian calendar is assumed.
  1481.  
  1482. After loading the calendar, the hooks given by the variable
  1483. `calendar-load-hook' are run.  This the place to add key bindings to the
  1484. calendar-mode-map.
  1485.  
  1486. After preparing the calendar window initially, the hooks given by the variable
  1487. `initial-calendar-window-hook' are run.
  1488.  
  1489. The hooks given by the variable `today-visible-calendar-hook' are run
  1490. everytime the calendar window gets scrolled, if the current date is visible
  1491. in the window.  If it is not visible, the hooks given by the variable
  1492. `today-invisible-calendar-hook' are run.  Thus, for example, setting
  1493. `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
  1494. to be replaced by asterisks to highlight it whenever it is in the window." t nil)
  1495.  
  1496. (autoload (quote list-yahrzeit-dates) "calendar" "\
  1497. List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
  1498. When called interactively from the calendar window, the date of death is taken
  1499. from the cursor position." t nil)
  1500.  
  1501. ;;;***
  1502.  
  1503. ;;;### (autoloads (set-case-syntax set-case-syntax-pair set-case-syntax-delims describe-buffer-case-table) "case-table" "case-table.el" (11283 37570))
  1504. ;;; Generated autoloads from case-table.el
  1505.  
  1506. (autoload (quote describe-buffer-case-table) "case-table" "\
  1507. Describe the case table of the current buffer." t nil)
  1508.  
  1509. (autoload (quote set-case-syntax-delims) "case-table" "\
  1510. Make characters L and R a matching pair of non-case-converting delimiters.
  1511. This sets the entries for L and R in TABLE, which is a string
  1512. that will be used as the downcase part of a case table.
  1513. It also modifies `standard-syntax-table', and `text-mode-syntax-table' to
  1514. indicate left and right delimiters." nil nil)
  1515.  
  1516. (autoload (quote set-case-syntax-pair) "case-table" "\
  1517. Make characters UC and LC a pair of inter-case-converting letters.
  1518. This sets the entries for characters UC and LC in TABLE, which is a string
  1519. that will be used as the downcase part of a case table.
  1520. It also modifies `standard-syntax-table' and `text-mode-syntax-table'
  1521. to indicate an (uppercase, lowercase) pair of letters." nil nil)
  1522.  
  1523. (autoload (quote set-case-syntax) "case-table" "\
  1524. Make characters C case-invariant with syntax SYNTAX.
  1525. This sets the entries for character C in TABLE, which is a string
  1526. that will be used as the downcase part of a case table.
  1527. It also modifies `standard-syntax-table' and `text-mode-syntax-table'.
  1528. SYNTAX should be \" \", \"w\", \".\" or \"_\"." nil nil)
  1529.  
  1530. ;;;***
  1531.  
  1532. ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "chistory.el" (11196 27803))
  1533. ;;; Generated autoloads from chistory.el
  1534.  
  1535. (autoload (quote repeat-matching-complex-command) "chistory" "\
  1536. Edit and re-evaluate complex command with name matching PATTERN.
  1537. Matching occurrences are displayed, most recent first, until you select
  1538. a form for evaluation.  If PATTERN is empty (or nil), every form in the
  1539. command history is offered.  The form is placed in the minibuffer for
  1540. editing and the result is evaluated." t nil)
  1541.  
  1542. (autoload (quote list-command-history) "chistory" "\
  1543. List history of commands typed to minibuffer.
  1544. The number of commands listed is controlled by `list-command-history-max'.
  1545. Calls value of `list-command-history-filter' (if non-nil) on each history
  1546. element to judge if that element should be excluded from the list.
  1547.  
  1548. The buffer is left in Command History mode." t nil)
  1549.  
  1550. (autoload (quote command-history-mode) "chistory" "\
  1551. Major mode for examining commands from `command-history'.
  1552. The number of commands listed is controlled by `list-command-history-max'.
  1553. The command history is filtered by `list-command-history-filter' if non-nil.
  1554. Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
  1555.  
  1556. Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
  1557. and digits provide prefix arguments.  Tab does not indent.
  1558. \\{command-history-map}
  1559. Calls the value of `command-history-hook' if that is non-nil.
  1560. The Command History listing is recomputed each time this mode is invoked." t nil)
  1561.  
  1562. ;;;***
  1563.  
  1564. ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "cl-indent.el" (11285 49748))
  1565. ;;; Generated autoloads from cl-indent.el
  1566.  
  1567. (autoload (quote common-lisp-indent-function) "cl-indent" nil nil nil)
  1568.  
  1569. ;;;***
  1570.  
  1571. ;;;### (autoloads (make-comint) "comint" "comint.el" (11335 3957))
  1572. ;;; Generated autoloads from comint.el
  1573.  
  1574. (autoload (quote make-comint) "comint" "\
  1575. Make a comint process NAME in a buffer, running PROGRAM.
  1576. The name of the buffer is made by surrounding NAME with `*'s.
  1577. If there is already a running process in that buffer, it is not restarted.
  1578. Optional third arg STARTFILE is the name of a file to send the contents of to 
  1579. the process.  Any more args are arguments to PROGRAM." nil nil)
  1580.  
  1581. ;;;***
  1582.  
  1583. ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (11330 25785))
  1584. ;;; Generated autoloads from compare-w.el
  1585.  
  1586. (autoload (quote compare-windows) "compare-w" "\
  1587. Compare text in current window with text in next window.
  1588. Compares the text starting at point in each window,
  1589. moving over text in each one as far as they match.
  1590.  
  1591. A prefix arg means ignore changes in whitespace.
  1592. The variable `compare-windows-whitespace' controls how whitespace is skipped.
  1593. If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
  1594.  
  1595. ;;;***
  1596.  
  1597. ;;;### (autoloads (next-error grep compile) "compile" "compile.el" (11332 51733))
  1598. ;;; Generated autoloads from compile.el
  1599.  
  1600. (defvar compilation-mode-hook nil "\
  1601. *List of hook functions run by `compilation-mode' (see `run-hooks').")
  1602.  
  1603. (defconst compilation-window-height nil "\
  1604. *Number of lines in a compilation window.  If nil, use Emacs default.")
  1605.  
  1606. (defvar compilation-buffer-name-function nil "\
  1607. Function to compute the name of a compilation buffer.
  1608. The function receives one argument, the name of the major mode of the
  1609. compilation buffer.  It should return a string.
  1610. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  1611.  
  1612. (defvar compilation-finish-function nil "\
  1613. *Function to call when a compilation process finishes.
  1614. It is called with two arguments: the compilation buffer, and a string
  1615. describing how the process finished.")
  1616.  
  1617. (defvar compilation-search-path (quote (nil)) "\
  1618. *List of directories to search for source files named in error messages.
  1619. Elements should be directory names, not file names of directories.
  1620. nil as an element means to try the default directory.")
  1621.  
  1622. (autoload (quote compile) "compile" "\
  1623. Compile the program including the current buffer.  Default: run `make'.
  1624. Runs COMMAND, a shell command, in a separate process asynchronously
  1625. with output going to the buffer `*compilation*'.
  1626.  
  1627. You can then use the command \\[next-error] to find the next error message
  1628. and move to the source code that caused it.
  1629.  
  1630. To run more than one compilation at once, start one and rename the
  1631. `*compilation*' buffer to some other name with \\[rename-buffer].
  1632. Then start the next one.
  1633.  
  1634. The name used for the buffer is actually whatever is returned by
  1635. the function in `compilation-buffer-name-function', so you can set that
  1636. to a function that generates a unique name." t nil)
  1637.  
  1638. (autoload (quote grep) "compile" "\
  1639. Run grep, with user-specified args, and collect output in a buffer.
  1640. While grep runs asynchronously, you can use the \\[next-error] command
  1641. to find the text that grep hits refer to.
  1642.  
  1643. This command uses a special history list for its arguments, so you can
  1644. easily repeat a grep command." t nil)
  1645.  
  1646. (autoload (quote next-error) "compile" "\
  1647. Visit next compilation error message and corresponding source code.
  1648. This operates on the output from the \\[compile] command.
  1649. If all preparsed error messages have been processed,
  1650. the error message buffer is checked for new ones.
  1651.  
  1652. A prefix arg specifies how many error messages to move;
  1653. negative means move back to previous error messages.
  1654. Just C-u as a prefix means reparse the error message buffer
  1655. and start at the first error.
  1656.  
  1657. \\[next-error] normally applies to the most recent compilation started,
  1658. but as long as you are in the middle of parsing errors from one compilation
  1659. output buffer, you stay with that compilation output buffer.
  1660.  
  1661. Use \\[next-error] in a compilation output buffer to switch to
  1662. processing errors from that compilation.
  1663.  
  1664. See variables `compilation-parse-errors-function' and
  1665. `compilation-error-regexp-alist' for customization ideas." t nil)
  1666.  
  1667. (define-key ctl-x-map "`" (quote next-error))
  1668.  
  1669. ;;;***
  1670.  
  1671. ;;;### (autoloads (c++-mode) "cplus-md" "cplus-md.el" (11296 5913))
  1672. ;;; Generated autoloads from cplus-md.el
  1673.  
  1674. (autoload (quote c++-mode) "cplus-md" "\
  1675. Major mode for editing C++ code.  Very much like editing C code.
  1676. Expression and list commands understand all C++ brackets.
  1677. Tab at left margin indents for C++ code
  1678. Comments are delimited with /* ... */ {or with // ... <newline>}
  1679. Paragraphs are separated by blank lines only.
  1680. Delete converts tabs to spaces as it moves back.
  1681. \\{c++-mode-map}
  1682. Variables controlling indentation style:
  1683.  c-tab-always-indent
  1684.     Non-nil means TAB in C mode should always reindent the current line,
  1685.     regardless of where in the line point is when the TAB command is used.
  1686.     Default is t.
  1687.  c-auto-newline
  1688.     Non-nil means automatically newline before and after braces,
  1689.     and after colons and semicolons, inserted in C code.
  1690.  c-indent-level
  1691.     Indentation of C statements within surrounding block.
  1692.     The surrounding block's indentation is the indentation
  1693.     of the line on which the open-brace appears.
  1694.  c-continued-statement-offset
  1695.     Extra indentation given to a substatement, such as the
  1696.     then-clause of an if or body of a while.
  1697.  c-continued-brace-offset
  1698.     Extra indentation given to a brace that starts a substatement.
  1699.     This is in addition to c-continued-statement-offset.
  1700.  c-brace-offset
  1701.     Extra indentation for line if it starts with an open brace.
  1702.  c-brace-imaginary-offset
  1703.     An open brace following other text is treated as if it were
  1704.     this far to the right of the start of its line.
  1705.  c-argdecl-indent
  1706.     Indentation level of declarations of C function arguments.
  1707.  c-label-offset
  1708.     Extra indentation for line that is a label, or case or ``default:'', or
  1709.     ``public:'' or ``private:'', or ``protected:''.
  1710.  c++-electric-colon
  1711.     If non-nil at invocation of c++-mode (t is the default) colon electricly
  1712.     indents.
  1713.  c++-empty-arglist-indent
  1714.     If non-nil, a function declaration or invocation which ends a line with a
  1715.     left paren is indented this many extra spaces, instead of flush with the
  1716.     left paren.
  1717.  c++-friend-offset
  1718.     Offset of C++ friend class declarations relative to member declarations.
  1719.  c++-member-init-indent
  1720.     Indentation level of member initializations in function declarations,
  1721.     if they are on a separate line beginning with a colon.
  1722.  c++-continued-member-init-offset
  1723.     Extra indentation for continuation lines of member initializations; NIL
  1724.     means to align with previous initializations rather than with the colon.
  1725.  
  1726. Settings for K&R, BSD, and Stroustrup indentation styles are
  1727.   c-indent-level                5    8    4
  1728.   c-continued-statement-offset  5    8    4
  1729.   c-continued-brace-offset                0
  1730.   c-brace-offset               -5   -8    0
  1731.   c-brace-imaginary-offset                0
  1732.   c-argdecl-indent              0    8    4
  1733.   c-label-offset               -5   -8   -4
  1734.   c++-empty-arglist-indent                4
  1735.   c++-friend-offset                       0
  1736.  
  1737. Turning on C++ mode calls the value of the variable `c++-mode-hook' with
  1738. no args if that value is non-nil." t nil)
  1739.  
  1740. ;;;***
  1741.  
  1742. ;;;### (autoloads (dabbrev-expand) "dabbrev" "dabbrev.el" (11292 51554))
  1743. ;;; Generated autoloads from dabbrev.el
  1744.  
  1745. (autoload (quote dabbrev-expand) "dabbrev" "\
  1746. Expand previous word \"dynamically\".
  1747. Expands to the most recent, preceding word for which this is a prefix.
  1748. If no suitable preceding word is found, words following point are considered.
  1749.  
  1750. If `case-fold-search' and `case-replace' are non-nil (usually true)
  1751. then the substituted word may be case-adjusted to match the abbreviation
  1752. that you had typed.  This takes place if the substituted word, as found,
  1753. is all lower case, or if it is at the beginning of a sentence and only
  1754. its first letter was upper case.
  1755.  
  1756. A positive prefix arg N says to take the Nth backward DISTINCT
  1757. possibility.  A negative argument says search forward.  The variable
  1758. `dabbrev-backward-only' may be used to limit the direction of search to
  1759. backward if set non-nil.
  1760.  
  1761. If the cursor has not moved from the end of the previous expansion and
  1762. no argument is given, replace the previously-made expansion
  1763. with the next possible expansion not yet tried." t nil)
  1764.  
  1765. (define-key esc-map "/" (quote dabbrev-expand))
  1766.  
  1767. ;;;***
  1768.  
  1769. ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "debug.el" (11181 53262))
  1770. ;;; Generated autoloads from debug.el
  1771.  
  1772. (setq debugger (quote debug))
  1773.  
  1774. (autoload (quote debug) "debug" "\
  1775. Enter debugger.  Returns if user says \"continue\".
  1776. Arguments are mainly for use when this is called from the internals
  1777. of the evaluator.
  1778.  
  1779. You may call with no args, or you may pass nil as the first arg and
  1780. any other args you like.  In that case, the list of args after the
  1781. first will be printed into the backtrace buffer." nil nil)
  1782.  
  1783. (autoload (quote debug-on-entry) "debug" "\
  1784. Request FUNCTION to invoke debugger each time it is called.
  1785. If the user continues, FUNCTION's execution proceeds.
  1786. Works by modifying the definition of FUNCTION,
  1787. which must be written in Lisp, not predefined.
  1788. Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  1789. Redefining FUNCTION also does that." t nil)
  1790.  
  1791. (autoload (quote cancel-debug-on-entry) "debug" "\
  1792. Undo effect of \\[debug-on-entry] on FUNCTION.
  1793. If argument is nil or an empty string, cancel for all functions." t nil)
  1794.  
  1795. ;;;***
  1796.  
  1797. ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (11259 36696))
  1798. ;;; Generated autoloads from delsel.el
  1799.  
  1800. (defalias (quote pending-delete-mode) (quote delete-selection-mode))
  1801.  
  1802. (autoload (quote delete-selection-mode) "delsel" "\
  1803. Toggle Delete Selection mode.
  1804. When ON, typed text replaces the selection if the selection is active.
  1805. When OFF, typed text is just inserted at point." t nil)
  1806.  
  1807. ;;;***
  1808.  
  1809. ;;;### (autoloads (diary) "diary" "diary.el" (11300 39849))
  1810. ;;; Generated autoloads from diary.el
  1811.  
  1812. (autoload (quote diary) "diary" "\
  1813. Generate the diary window for ARG days starting with the current date.
  1814. If no argument is provided, the number of days of diary entries is governed
  1815. by the variable `number-of-diary-entries'.  This function is suitable for
  1816. execution in a .emacs file." t nil)
  1817.  
  1818. ;;;***
  1819.  
  1820. ;;;### (autoloads (diff-backup diff) "diff" "diff.el" (11302 33003))
  1821. ;;; Generated autoloads from diff.el
  1822.  
  1823. (autoload (quote diff) "diff" "\
  1824. Find and display the differences between OLD and NEW files.
  1825. Interactively the current buffer's file name is the default for for NEW
  1826. and a backup file for NEW is the default for OLD.
  1827. With prefix arg, prompt for diff switches." t nil)
  1828.  
  1829. (autoload (quote diff-backup) "diff" "\
  1830. Diff this file with its backup file or vice versa.
  1831. Uses the latest backup, if there are several numerical backups.
  1832. If this file is a backup, diff it with its original.
  1833. The backup file is the first file given to `diff'." t nil)
  1834.  
  1835. ;;;***
  1836.  
  1837. ;;;### (autoloads (dired-hide-all dired-hide-subdir dired-tree-down dired-tree-up dired-kill-subdir dired-mark-subdir-files dired-goto-subdir dired-prev-subdir dired-maybe-insert-subdir dired-downcase dired-upcase dired-do-symlink-regexp dired-do-hardlink-regexp dired-do-copy-regexp dired-do-rename-regexp dired-do-rename dired-do-hardlink dired-do-symlink dired-do-copy dired-create-directory dired-string-replace-match dired-do-redisplay dired-do-load dired-do-byte-compile dired-do-compress dired-do-kill-lines dired-do-shell-command dired-do-print dired-do-chown dired-do-chgrp dired-do-chmod dired-backup-diff dired-diff) "dired-aux" "dired-aux.el" (11315 32230))
  1838. ;;; Generated autoloads from dired-aux.el
  1839.  
  1840. (autoload (quote dired-diff) "dired-aux" "\
  1841. Compare file at point with file FILE using `diff'.
  1842. FILE defaults to the file at the mark.
  1843. The prompted-for file is the first file given to `diff'." t nil)
  1844.  
  1845. (autoload (quote dired-backup-diff) "dired-aux" "\
  1846. Diff this file with its backup file or vice versa.
  1847. Uses the latest backup, if there are several numerical backups.
  1848. If this file is a backup, diff it with its original.
  1849. The backup file is the first file given to `diff'." t nil)
  1850.  
  1851. (autoload (quote dired-do-chmod) "dired-aux" "\
  1852. Change the mode of the marked (or next ARG) files.
  1853. This calls chmod, thus symbolic modes like `g+w' are allowed." t nil)
  1854.  
  1855. (autoload (quote dired-do-chgrp) "dired-aux" "\
  1856. Change the group of the marked (or next ARG) files." t nil)
  1857.  
  1858. (autoload (quote dired-do-chown) "dired-aux" "\
  1859. Change the owner of the marked (or next ARG) files." t nil)
  1860.  
  1861. (autoload (quote dired-do-print) "dired-aux" "\
  1862. Print the marked (or next ARG) files.
  1863. Uses the shell command coming from variables `lpr-command' and
  1864. `lpr-switches' as default." t nil)
  1865.  
  1866. (autoload (quote dired-do-shell-command) "dired-aux" "\
  1867. Run a shell command COMMAND on the marked files.
  1868. If no files are marked or a specific numeric prefix arg is given,
  1869. the next ARG files are used.  Just \\[universal-argument] means the current file.
  1870. The prompt mentions the file(s) or the marker, as appropriate.
  1871.  
  1872. If there is output, it goes to a separate buffer.
  1873.  
  1874. Normally the command is run on each file individually.
  1875. However, if there is a `*' in the command then it is run
  1876. just once with the entire file list substituted there.
  1877.  
  1878. No automatic redisplay of dired buffers is attempted, as there's no
  1879. telling what files the command may have changed.  Type
  1880. \\[dired-do-redisplay] to redisplay the marked files.
  1881.  
  1882. The shell command has the top level directory as working directory, so
  1883. output files usually are created there instead of in a subdir." t nil)
  1884.  
  1885. (autoload (quote dired-do-kill-lines) "dired-aux" "\
  1886. Kill all marked lines (not the files).
  1887. With a prefix argument, kill that many lines starting with the current line.
  1888. (A negative argument kills lines before the current line.)
  1889. To kill an entire subdirectory, go to its directory header line
  1890. and use this command with a prefix argument (the value does not matter)." t nil)
  1891.  
  1892. (autoload (quote dired-do-compress) "dired-aux" "\
  1893. Compress or uncompress marked (or next ARG) files." t nil)
  1894.  
  1895. (autoload (quote dired-do-byte-compile) "dired-aux" "\
  1896. Byte compile marked (or next ARG) Emacs Lisp files." t nil)
  1897.  
  1898. (autoload (quote dired-do-load) "dired-aux" "\
  1899. Load the marked (or next ARG) Emacs Lisp files." t nil)
  1900.  
  1901. (autoload (quote dired-do-redisplay) "dired-aux" "\
  1902. Redisplay all marked (or next ARG) files.
  1903. If on a subdir line, redisplay that subdirectory.  In that case,
  1904. a prefix arg lets you edit the `ls' switches used for the new listing." t nil)
  1905.  
  1906. (autoload (quote dired-string-replace-match) "dired-aux" "\
  1907. Replace first match of REGEXP in STRING with NEWTEXT.
  1908. If it does not match, nil is returned instead of the new string.
  1909. Optional arg LITERAL means to take NEWTEXT literally.
  1910. Optional arg GLOBAL means to replace all matches." nil nil)
  1911.  
  1912. (autoload (quote dired-create-directory) "dired-aux" "\
  1913. Create a directory called DIRECTORY." t nil)
  1914.  
  1915. (autoload (quote dired-do-copy) "dired-aux" "\
  1916. Copy all marked (or next ARG) files, or copy the current file.
  1917. This normally preserves the last-modified date when copying.
  1918. When operating on just the current file, you specify the new name.
  1919. When operating on multiple or marked files, you specify a directory
  1920. and new symbolic links are made in that directory
  1921. with the same names that the files currently have." t nil)
  1922.  
  1923. (autoload (quote dired-do-symlink) "dired-aux" "\
  1924. Make symbolic links to current file or all marked (or next ARG) files.
  1925. When operating on just the current file, you specify the new name.
  1926. When operating on multiple or marked files, you specify a directory
  1927. and new symbolic links are made in that directory
  1928. with the same names that the files currently have." t nil)
  1929.  
  1930. (autoload (quote dired-do-hardlink) "dired-aux" "\
  1931. Add names (hard links) current file or all marked (or next ARG) files.
  1932. When operating on just the current file, you specify the new name.
  1933. When operating on multiple or marked files, you specify a directory
  1934. and new hard links are made in that directory
  1935. with the same names that the files currently have." t nil)
  1936.  
  1937. (autoload (quote dired-do-rename) "dired-aux" "\
  1938. Rename current file or all marked (or next ARG) files.
  1939. When renaming just the current file, you specify the new name.
  1940. When renaming multiple or marked files, you specify a directory." t nil)
  1941.  
  1942. (autoload (quote dired-do-rename-regexp) "dired-aux" "\
  1943. Rename marked files containing REGEXP to NEWNAME.
  1944. As each match is found, the user must type a character saying
  1945.   what to do with it.  For directions, type \\[help-command] at that time.
  1946. NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
  1947. REGEXP defaults to the last regexp used.
  1948. With a zero prefix arg, renaming by regexp affects the complete
  1949.   pathname - usually only the non-directory part of file names is used
  1950.   and changed." t nil)
  1951.  
  1952. (autoload (quote dired-do-copy-regexp) "dired-aux" "\
  1953. Copy all marked files containing REGEXP to NEWNAME.
  1954. See function `dired-rename-regexp' for more info." t nil)
  1955.  
  1956. (autoload (quote dired-do-hardlink-regexp) "dired-aux" "\
  1957. Hardlink all marked files containing REGEXP to NEWNAME.
  1958. See function `dired-rename-regexp' for more info." t nil)
  1959.  
  1960. (autoload (quote dired-do-symlink-regexp) "dired-aux" "\
  1961. Symlink all marked files containing REGEXP to NEWNAME.
  1962. See function `dired-rename-regexp' for more info." t nil)
  1963.  
  1964. (autoload (quote dired-upcase) "dired-aux" "\
  1965. Rename all marked (or next ARG) files to upper case." t nil)
  1966.  
  1967. (autoload (quote dired-downcase) "dired-aux" "\
  1968. Rename all marked (or next ARG) files to lower case." t nil)
  1969.  
  1970. (autoload (quote dired-maybe-insert-subdir) "dired-aux" "\
  1971. Insert this subdirectory into the same dired buffer.
  1972. If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
  1973.   else inserts it at its natural place (as `ls -lR' would have done).
  1974. With a prefix arg, you may edit the ls switches used for this listing.
  1975.   You can add `R' to the switches to expand the whole tree starting at
  1976.   this subdirectory.
  1977. This function takes some pains to conform to `ls -lR' output." t nil)
  1978.  
  1979. (autoload (quote dired-prev-subdir) "dired-aux" "\
  1980. Go to previous subdirectory, regardless of level.
  1981. When called interactively and not on a subdir line, go to this subdir's line." t nil)
  1982.  
  1983. (autoload (quote dired-goto-subdir) "dired-aux" "\
  1984. Go to end of header line of DIR in this dired buffer.
  1985. Return value of point on success, otherwise return nil.
  1986. The next char is either \\n, or \\r if DIR is hidden." t nil)
  1987.  
  1988. (autoload (quote dired-mark-subdir-files) "dired-aux" "\
  1989. Mark all files except `.' and `..'." t nil)
  1990.  
  1991. (autoload (quote dired-kill-subdir) "dired-aux" "\
  1992. Remove all lines of current subdirectory.
  1993. Lower levels are unaffected." t nil)
  1994.  
  1995. (autoload (quote dired-tree-up) "dired-aux" "\
  1996. Go up ARG levels in the dired tree." t nil)
  1997.  
  1998. (autoload (quote dired-tree-down) "dired-aux" "\
  1999. Go down in the dired tree." t nil)
  2000.  
  2001. (autoload (quote dired-hide-subdir) "dired-aux" "\
  2002. Hide or unhide the current subdirectory and move to next directory.
  2003. Optional prefix arg is a repeat factor.
  2004. Use \\[dired-hide-all] to (un)hide all directories." t nil)
  2005.  
  2006. (autoload (quote dired-hide-all) "dired-aux" "\
  2007. Hide all subdirectories, leaving only their header lines.
  2008. If there is already something hidden, make everything visible again.
  2009. Use \\[dired-hide-subdir] to (un)hide a particular subdirectory." t nil)
  2010.  
  2011. ;;;***
  2012.  
  2013. ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired.el" (11330 12951))
  2014. ;;; Generated autoloads from dired.el
  2015.  
  2016. (defvar dired-listing-switches
  2017.   (if (eq system-type 'Windows-NT)
  2018.       "-l" "-al")
  2019.   "*Switches passed to `ls' for dired.  MUST contain the `l' option.
  2020. May contain all other options that don't contradict `-l';
  2021. may contain even `F', `b', `i' and `s'.")
  2022.  
  2023. (defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v silicon-graphics-unix))) "chown" "/etc/chown") "\
  2024. Name of chown command (usually `chown' or `/etc/chown').")
  2025.  
  2026. (defvar dired-ls-F-marks-symlinks nil "\
  2027. *Informs dired about how `ls -lF' marks symbolic links.
  2028. Set this to t if `insert-directory-program' with `-lF' marks the symbolic link
  2029. itself with a trailing @ (usually the case under Ultrix).
  2030.  
  2031. Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
  2032. nil (the default), if it gives `bar@ -> foo', set it to t.
  2033.  
  2034. Dired checks if there is really a @ appended.  Thus, if you have a
  2035. marking `ls' program on one host and a non-marking on another host, and
  2036. don't care about symbolic links which really end in a @, you can
  2037. always set this variable to t.")
  2038.  
  2039. (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\
  2040. *Regexp of files to skip when finding first file of a directory.
  2041. A value of nil means move to the subdir line.
  2042. A value of t means move to first file.")
  2043.  
  2044. (defvar dired-keep-marker-rename t "\
  2045. *Controls marking of renamed files.
  2046. If t, files keep their previous marks when they are renamed.
  2047. If a character, renamed files (whether previously marked or not)
  2048. are afterward marked with that character.")
  2049.  
  2050. (defvar dired-keep-marker-copy 67 "\
  2051. *Controls marking of copied files.
  2052. If t, copied files are marked if and as the corresponding original files were.
  2053. If a character, copied files are unconditionally marked with that character.")
  2054.  
  2055. (defvar dired-keep-marker-hardlink 72 "\
  2056. *Controls marking of newly made hard links.
  2057. If t, they are marked if and as the files linked to were marked.
  2058. If a character, new links are unconditionally marked with that character.")
  2059.  
  2060. (defvar dired-keep-marker-symlink 89 "\
  2061. *Controls marking of newly made symbolic links.
  2062. If t, they are marked if and as the files linked to were marked.
  2063. If a character, new links are unconditionally marked with that character.")
  2064.  
  2065. (defvar dired-dwim-target nil "\
  2066. *If non-nil, dired tries to guess a default target directory.
  2067. This means: if there is a dired buffer displayed in the next window,
  2068. use its current subdir, instead of the current subdir of this dired buffer.
  2069.  
  2070. The target is used in the prompt for file copy, rename etc.")
  2071.  
  2072. (defvar dired-copy-preserve-time t "\
  2073. *If non-nil, Dired preserves the last-modified time in a file copy.
  2074. (This works on only some systems.)")
  2075. (define-key ctl-x-map "d" 'dired)
  2076.  
  2077. (autoload (quote dired) "dired" "\
  2078. \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
  2079. Optional second argument SWITCHES specifies the `ls' options used.
  2080. (Interactively, use a prefix argument to be able to specify SWITCHES.)
  2081. Dired displays a list of files in DIRNAME (which may also have
  2082. shell wildcards appended to select certain files).  If DIRNAME is a cons,
  2083. its first element is taken as the directory name and the resr as an explicit
  2084. list of files to make directory entries for.
  2085. \\<dired-mode-map>You can move around in it with the usual commands.
  2086. You can flag files for deletion with \\[dired-flag-file-deletion] and then
  2087. delete them by typing \\[dired-do-flagged-delete].
  2088. Type \\[describe-mode] after entering dired for more info.
  2089.  
  2090. If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
  2091. (define-key ctl-x-4-map "d" 'dired-other-window)
  2092.  
  2093. (autoload (quote dired-other-window) "dired" "\
  2094. \"Edit\" directory DIRNAME.  Like `dired' but selects in another window." t nil)
  2095. (define-key ctl-x-5-map "d" 'dired-other-frame)
  2096.  
  2097. (autoload (quote dired-other-frame) "dired" "\
  2098. \"Edit\" directory DIRNAME.  Like `dired' but makes a new frame." t nil)
  2099.  
  2100. (autoload (quote dired-noselect) "dired" "\
  2101. Like `dired' but returns the dired buffer as value, does not select it." nil nil)
  2102.  
  2103. ;;;***
  2104.  
  2105. ;;;### (autoloads (disassemble) "disass" "disass.el" (11295 37242))
  2106. ;;; Generated autoloads from disass.el
  2107.  
  2108. (autoload (quote disassemble) "disass" "\
  2109. Print disassembled code for OBJECT in (optional) BUFFER.
  2110. OBJECT can be a symbol defined as a function, or a function itself
  2111. (a lambda expression or a compiled-function object).
  2112. If OBJECT is not already compiled, we compile it, but do not
  2113. redefine OBJECT if it is a symbol." t nil)
  2114.  
  2115. ;;;***
  2116.  
  2117. ;;;### (autoloads (standard-display-european create-glyph standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "disp-table.el" (11265 29044))
  2118. ;;; Generated autoloads from disp-table.el
  2119.  
  2120. (autoload (quote describe-current-display-table) "disp-table" "\
  2121. Describe the display table in use in the selected window and buffer." t nil)
  2122.  
  2123. (autoload (quote make-display-table) "disp-table" "\
  2124. Return a new, empty display table." nil nil)
  2125.  
  2126. (autoload (quote standard-display-8bit) "disp-table" "\
  2127. Display characters in the range L to H literally." nil nil)
  2128.  
  2129. (autoload (quote standard-display-default) "disp-table" "\
  2130. Display characters in the range L to H using the default notation." nil nil)
  2131.  
  2132. (autoload (quote standard-display-ascii) "disp-table" "\
  2133. Display character C using string S." nil nil)
  2134.  
  2135. (autoload (quote standard-display-g1) "disp-table" "\
  2136. Display character C as character SC in the g1 character set." nil nil)
  2137.  
  2138. (autoload (quote standard-display-graphic) "disp-table" "\
  2139. Display character C as character GC in graphics character set." nil nil)
  2140.  
  2141. (autoload (quote standard-display-underline) "disp-table" "\
  2142. Display character C as character UC plus underlining." nil nil)
  2143.  
  2144. (autoload (quote create-glyph) "disp-table" nil nil nil)
  2145.  
  2146. (autoload (quote standard-display-european) "disp-table" "\
  2147. Toggle display of European characters encoded with ISO 8859.
  2148. When enabled, characters in the range of 160 to 255 display not
  2149. as octal escapes, but as accented characters.
  2150. With prefix argument, enable European character display iff arg is positive." t nil)
  2151.  
  2152. ;;;***
  2153.  
  2154. ;;;### (autoloads (dissociated-press) "dissociate" "dissociate.el" (11285 51167))
  2155. ;;; Generated autoloads from dissociate.el
  2156.  
  2157. (autoload (quote dissociated-press) "dissociate" "\
  2158. Dissociate the text of the current buffer.
  2159. Output goes in buffer named *Dissociation*,
  2160. which is redisplayed each time text is added to it.
  2161. Every so often the user must say whether to continue.
  2162. If ARG is positive, require ARG chars of continuity.
  2163. If ARG is negative, require -ARG words of continuity.
  2164. Default is 2." t nil)
  2165.  
  2166. ;;;***
  2167.  
  2168. ;;;### (autoloads (doctor) "doctor" "doctor.el" (11285 51174))
  2169. ;;; Generated autoloads from doctor.el
  2170.  
  2171. (autoload (quote doctor) "doctor" "\
  2172. Switch to *doctor* buffer and start giving psychotherapy." t nil)
  2173.  
  2174. ;;;***
  2175.  
  2176. ;;;### (autoloads (dunnet) "dunnet" "dunnet.el" (11331 7826))
  2177. ;;; Generated autoloads from dunnet.el
  2178.  
  2179. (autoload (quote dunnet) "dunnet" "\
  2180. Switch to *dungeon* buffer and start game." t nil)
  2181.  
  2182. ;;;***
  2183.  
  2184. ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" (11189 17403))
  2185. ;;; Generated autoloads from ebuff-menu.el
  2186.  
  2187. (autoload (quote electric-buffer-list) "ebuff-menu" "\
  2188. Pops up a buffer describing the set of Emacs buffers.
  2189. Vaguely like ITS lunar select buffer; combining typeoutoid buffer
  2190. listing with menuoid buffer selection.
  2191.  
  2192. If the very next character typed is a space then the buffer list
  2193. window disappears.  Otherwise, one may move around in the buffer list
  2194. window, marking buffers to be selected, saved or deleted.
  2195.  
  2196. To exit and select a new buffer, type a space when the cursor is on
  2197. the appropriate line of the buffer-list window.  Other commands are
  2198. much like those of buffer-menu-mode.
  2199.  
  2200. Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
  2201.  
  2202. \\{electric-buffer-menu-mode-map}" t nil)
  2203.  
  2204. ;;;***
  2205.  
  2206. ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" "echistory.el" (11288 43486))
  2207. ;;; Generated autoloads from echistory.el
  2208.  
  2209. (autoload (quote Electric-command-history-redo-expression) "echistory" "\
  2210. Edit current history line in minibuffer and execute result.
  2211. With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
  2212.  
  2213. ;;;***
  2214.  
  2215. ;;;### (autoloads (edebug-debug edebug-defun) "edebug" "edebug.el" (11285 51182))
  2216. ;;; Generated autoloads from edebug.el
  2217.  
  2218. (autoload (quote edebug-defun) "edebug" "\
  2219. Evaluate defun or defmacro, like eval-defun, but with edebug calls.
  2220. Print its name in the minibuffer and leave point after any error it finds,
  2221. with mark at the original point." t nil)
  2222.  
  2223. (defvar global-edebug-prefix "X" "\
  2224. Prefix key for global edebug commands, available from any buffer.")
  2225.  
  2226. (defvar global-edebug-map nil "\
  2227. Global map of edebug commands, available from any buffer.")
  2228.  
  2229. (if global-edebug-map nil (setq global-edebug-map (make-sparse-keymap)) (global-unset-key global-edebug-prefix) (global-set-key global-edebug-prefix global-edebug-map) (define-key global-edebug-map "d" (quote edebug-defun)) (define-key global-edebug-map " " (quote edebug-step-through)) (define-key global-edebug-map "g" (quote edebug-go)) (define-key global-edebug-map "G" (quote edebug-Go-nonstop)) (define-key global-edebug-map "t" (quote edebug-trace)) (define-key global-edebug-map "T" (quote edebug-Trace-fast)) (define-key global-edebug-map "c" (quote edebug-continue)) (define-key global-edebug-map "C" (quote edebug-Continue-fast)) (define-key global-edebug-map "b" (quote edebug-set-breakpoint)) (define-key global-edebug-map "x" (quote edebug-set-conditional-breakpoint)) (define-key global-edebug-map "u" (quote edebug-unset-breakpoint)) (define-key global-edebug-map "w" (quote edebug-where)) (define-key global-edebug-map "q" (quote top-level)))
  2230.  
  2231. (autoload (quote edebug-debug) "edebug" "\
  2232. Replacement for debug.  
  2233. If an error or quit occurred and we are running an edebugged function,
  2234. show where we last were.  Otherwise call debug normally." nil nil)
  2235.  
  2236. ;;;***
  2237.  
  2238. ;;;### (autoloads (read-kbd-macro edit-kbd-macro edit-last-kbd-macro) "edmacro" "edmacro.el" (11176 61364))
  2239. ;;; Generated autoloads from edmacro.el
  2240.  
  2241. (autoload (quote edit-last-kbd-macro) "edmacro" "\
  2242. Edit the most recently defined keyboard macro." t nil)
  2243.  
  2244. (autoload (quote edit-kbd-macro) "edmacro" "\
  2245. Edit a keyboard macro which has been given a name by `name-last-kbd-macro'.
  2246. (See also `edit-last-kbd-macro'.)" t nil)
  2247.  
  2248. (autoload (quote read-kbd-macro) "edmacro" "\
  2249. Read the region as a keyboard macro definition.
  2250. The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
  2251. The resulting macro is installed as the \"current\" keyboard macro.
  2252.  
  2253. Symbols:  RET, SPC, TAB, DEL, LFD, NUL; C-key; M-key.  (Must be uppercase.)
  2254.           REM marks the rest of a line as a comment.
  2255.           Whitespace is ignored; other characters are copied into the macro." t nil)
  2256.  
  2257. ;;;***
  2258.  
  2259. ;;;### (autoloads (edt-emulation-on) "edt" "edt.el" (11285 51187))
  2260. ;;; Generated autoloads from edt.el
  2261.  
  2262. (autoload (quote edt-emulation-on) "edt" "\
  2263. Emulate DEC's EDT editor.
  2264. Note that many keys are rebound; including nearly all keypad keys.
  2265. Use \\[edt-emulation-off] to undo all rebindings except the keypad keys." t nil)
  2266.  
  2267. ;;;***
  2268.  
  2269. ;;;### (autoloads (report-emacs-bug) "emacsbug" "emacsbug.el" (11185 3426))
  2270. ;;; Generated autoloads from emacsbug.el
  2271.  
  2272. (autoload (quote report-emacs-bug) "emacsbug" "\
  2273. Report a bug in GNU Emacs.
  2274. Prompts for bug subject.  Leaves you in a mail buffer." t nil)
  2275.  
  2276. ;;;***
  2277.  
  2278. ;;;### (autoloads (emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "emerge.el" (11292 61746))
  2279. ;;; Generated autoloads from emerge.el
  2280.  
  2281. (autoload (quote emerge-files) "emerge" "\
  2282. Run Emerge on two files." t nil)
  2283.  
  2284. (autoload (quote emerge-files-with-ancestor) "emerge" "\
  2285. Run Emerge on two files, giving another file as the ancestor." t nil)
  2286.  
  2287. (autoload (quote emerge-buffers) "emerge" "\
  2288. Run Emerge on two buffers." t nil)
  2289.  
  2290. (autoload (quote emerge-buffers-with-ancestor) "emerge" "\
  2291. Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
  2292.  
  2293. (autoload (quote emerge-files-command) "emerge" nil nil nil)
  2294.  
  2295. (autoload (quote emerge-files-with-ancestor-command) "emerge" nil nil nil)
  2296.  
  2297. (autoload (quote emerge-files-remote) "emerge" nil nil nil)
  2298.  
  2299. (autoload (quote emerge-files-with-ancestor-remote) "emerge" nil nil nil)
  2300.  
  2301. ;;;***
  2302.  
  2303. ;;;### (autoloads (setenv) "env" "env.el" (11288 64005))
  2304. ;;; Generated autoloads from env.el
  2305.  
  2306. (autoload (quote setenv) "env" "\
  2307. Set the value of the environment variable named VARIABLE to VALUE.
  2308. VARIABLE should be a string.  VALUE is optional; if not provided or is
  2309. `nil', the environment variable VARIABLE will be removed.  
  2310. This function works by modifying `process-environment'." t nil)
  2311.  
  2312. ;;;***
  2313.  
  2314. (defvar tags-file-name nil "\
  2315. *File name of tags table.
  2316. To switch to a new tags table, setting this variable is sufficient.
  2317. If you set this variable, do not also set `tags-table-list'.
  2318. Use the `etags' program to make a tags table file.")
  2319. (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
  2320.  
  2321. (defvar tags-table-list nil "\
  2322. *List of file names of tags tables to search.
  2323. An element that is a directory means the file \"TAGS\" in that directory.
  2324. To switch to a new list of tags tables, setting this variable is sufficient.
  2325. If you set this variable, do not also set `tags-file-name'.
  2326. Use the `etags' program to make a tags table file.")
  2327.  
  2328. (defvar find-tag-hook nil "\
  2329. *Hook to be run by \\[find-tag] after finding a tag.  See `run-hooks'.
  2330. The value in the buffer in which \\[find-tag] is done is used,
  2331. not the value in the buffer \\[find-tag] goes to.")
  2332.  
  2333. (defvar find-tag-default-function nil "\
  2334. *A function of no arguments used by \\[find-tag] to pick a default tag.
  2335. If nil, and the symbol that is the value of `major-mode'
  2336. has a `find-tag-default-function' property (see `put'), that is used.
  2337. Otherwise, `find-tag-default' is used.")
  2338.  
  2339. (defvar default-tags-table-function nil "\
  2340. *If non-nil, a function of no arguments to choose a default tags file
  2341. for a particular buffer.")
  2342.  
  2343. (autoload (quote visit-tags-table) "etags" "\
  2344. Tell tags commands to use tags table file FILE.
  2345. FILE should be the name of a file created with the `etags' program.
  2346. A directory name is ok too; it means file TAGS in that directory.
  2347.  
  2348. Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
  2349. With a prefix arg, set the buffer-local value instead.
  2350. When you find a tag with \\[find-tag], the buffer it finds the tag
  2351. in is given a local value of this variable which is the name of the tags
  2352. file the tag was in." t nil)
  2353.  
  2354. (autoload (quote tags-table-files) "etags" "\
  2355. Return a list of files in the current tags table.
  2356. Assumes the tags table is the current buffer.
  2357. File names returned are absolute." nil nil)
  2358.  
  2359. (autoload (quote find-tag-noselect) "etags" "\
  2360. Find tag (in current tags table) whose name contains TAGNAME.
  2361. Returns the buffer containing the tag's definition and moves its point there,
  2362. but does not select the buffer.
  2363. The default for TAGNAME is the expression in the buffer near point.
  2364.  
  2365. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2366. another tag that matches the last tagname or regexp used.  When there are
  2367. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2368. is the atom `-' (interactively, with prefix arg that is a negative number
  2369. or just \\[negative-argument]), pop back to the previous tag gone to.
  2370.  
  2371. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
  2372.  
  2373. See documentation of variable `tags-file-name'." t nil)
  2374.  
  2375. (autoload (quote find-tag) "etags" "\
  2376. Find tag (in current tags table) whose name contains TAGNAME.
  2377. Select the buffer containing the tag's definition, and move point there.
  2378. The default for TAGNAME is the expression in the buffer around or before point.
  2379.  
  2380. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2381. another tag that matches the last tagname or regexp used.  When there are
  2382. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2383. is the atom `-' (interactively, with prefix arg that is a negative number
  2384. or just \\[negative-argument]), pop back to the previous tag gone to.
  2385.  
  2386. See documentation of variable `tags-file-name'." t nil)
  2387. (define-key esc-map "." 'find-tag)
  2388.  
  2389. (autoload (quote find-tag-other-window) "etags" "\
  2390. Find tag (in current tags table) whose name contains TAGNAME.
  2391. Select the buffer containing the tag's definition in another window, and
  2392. move point there.  The default for TAGNAME is the expression in the buffer
  2393. around or before point.
  2394.  
  2395. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2396. another tag that matches the last tagname or regexp used.  When there are
  2397. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2398. is negative (interactively, with prefix arg that is a negative number or
  2399. just \\[negative-argument]), pop back to the previous tag gone to.
  2400.  
  2401. See documentation of variable `tags-file-name'." t nil)
  2402. (define-key ctl-x-4-map "." 'find-tag-other-window)
  2403.  
  2404. (autoload (quote find-tag-other-frame) "etags" "\
  2405. Find tag (in current tags table) whose name contains TAGNAME.
  2406. Select the buffer containing the tag's definition in another frame, and
  2407. move point there.  The default for TAGNAME is the expression in the buffer
  2408. around or before point.
  2409.  
  2410. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2411. another tag that matches the last tagname or regexp used.  When there are
  2412. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2413. is negative (interactively, with prefix arg that is a negative number or
  2414. just \\[negative-argument]), pop back to the previous tag gone to.
  2415.  
  2416. See documentation of variable `tags-file-name'." t nil)
  2417. (define-key ctl-x-5-map "." 'find-tag-other-frame)
  2418.  
  2419. (autoload (quote find-tag-regexp) "etags" "\
  2420. Find tag (in current tags table) whose name matches REGEXP.
  2421. Select the buffer containing the tag's definition and move point there.
  2422.  
  2423. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2424. another tag that matches the last tagname or regexp used.  When there are
  2425. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2426. is negative (interactively, with prefix arg that is a negative number or
  2427. just \\[negative-argument]), pop back to the previous tag gone to.
  2428.  
  2429. If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
  2430.  
  2431. See documentation of variable `tags-file-name'." t nil)
  2432.  
  2433. (autoload (quote next-file) "etags" "\
  2434. Select next file among files in current tags table.
  2435. Non-nil first argument (prefix arg, if interactive)
  2436. initializes to the beginning of the list of files in the tags table.
  2437.  
  2438. Non-nil second argument NOVISIT means use a temporary buffer
  2439.  to save time and avoid uninteresting warnings.
  2440.  
  2441. Value is nil if the file was already visited;
  2442. if the file was newly read in, the value is the filename." t nil)
  2443.  
  2444. (autoload (quote tags-loop-continue) "etags" "\
  2445. Continue last \\[tags-search] or \\[tags-query-replace] command.
  2446. Used noninteractively with non-nil argument to begin such a command.
  2447. Two variables control the processing we do on each file:
  2448. the value of `tags-loop-scan' is a form to be executed on each file
  2449. to see if it is interesting (it returns non-nil if so)
  2450. and `tags-loop-operate' is a form to execute to operate on an interesting file
  2451. If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
  2452. (define-key esc-map "," 'tags-loop-continue)
  2453.  
  2454. (autoload (quote tags-search) "etags" "\
  2455. Search through all files listed in tags table for match for REGEXP.
  2456. Stops when a match is found.
  2457. To continue searching for next match, use command \\[tags-loop-continue].
  2458.  
  2459. See documentation of variable `tags-file-name'." t nil)
  2460.  
  2461. (autoload (quote tags-query-replace) "etags" "\
  2462. Query-replace-regexp FROM with TO through all files listed in tags table.
  2463. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2464. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  2465. with the command \\[tags-loop-continue].
  2466.  
  2467. See documentation of variable `tags-file-name'." t nil)
  2468.  
  2469. (autoload (quote list-tags) "etags" "\
  2470. Display list of tags in file FILE.
  2471. FILE should not contain a directory specification
  2472. unless it has one in the tags table." t nil)
  2473.  
  2474. (autoload (quote tags-apropos) "etags" "\
  2475. Display list of all tags in tags table REGEXP matches." t nil)
  2476.  
  2477. (autoload (quote select-tags-table) "etags" "\
  2478. Select a tags table file from a menu of those you have already used.
  2479. The list of tags tables to select from is stored in `tags-table-file-list';
  2480. see the doc of that variable if you want to add names to the list." t nil)
  2481.  
  2482. (autoload (quote complete-tag) "etags" "\
  2483. Perform tags completion on the text around point.
  2484. Completes to the set of names listed in the current tags table.  
  2485. The string to complete is chosen in the same way as the default
  2486. for \\[find-tag] (which see)." t nil)
  2487. (define-key esc-map "\t" 'complete-tag)
  2488.  
  2489. ;;;***
  2490.  
  2491. ;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-regexp find-tag-other-frame find-tag-other-window find-tag find-tag-noselect tags-table-files visit-tags-table) "etags" "etags.el" (11288 45533))
  2492. ;;; Generated autoloads from etags.el
  2493.  
  2494. (defvar tags-file-name nil "\
  2495. *File name of tags table.
  2496. To switch to a new tags table, setting this variable is sufficient.
  2497. If you set this variable, do not also set `tags-table-list'.
  2498. Use the `etags' program to make a tags table file.")
  2499. (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
  2500.  
  2501. (defvar tags-table-list nil "\
  2502. *List of file names of tags tables to search.
  2503. An element that is a directory means the file \"TAGS\" in that directory.
  2504. To switch to a new list of tags tables, setting this variable is sufficient.
  2505. If you set this variable, do not also set `tags-file-name'.
  2506. Use the `etags' program to make a tags table file.")
  2507.  
  2508. (defvar find-tag-hook nil "\
  2509. *Hook to be run by \\[find-tag] after finding a tag.  See `run-hooks'.
  2510. The value in the buffer in which \\[find-tag] is done is used,
  2511. not the value in the buffer \\[find-tag] goes to.")
  2512.  
  2513. (defvar find-tag-default-function nil "\
  2514. *A function of no arguments used by \\[find-tag] to pick a default tag.
  2515. If nil, and the symbol that is the value of `major-mode'
  2516. has a `find-tag-default-function' property (see `put'), that is used.
  2517. Otherwise, `find-tag-default' is used.")
  2518.  
  2519. (defvar default-tags-table-function nil "\
  2520. *If non-nil, a function of no arguments to choose a default tags file
  2521. for a particular buffer.")
  2522.  
  2523. (autoload (quote visit-tags-table) "etags" "\
  2524. Tell tags commands to use tags table file FILE.
  2525. FILE should be the name of a file created with the `etags' program.
  2526. A directory name is ok too; it means file TAGS in that directory.
  2527.  
  2528. Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
  2529. With a prefix arg, set the buffer-local value instead.
  2530. When you find a tag with \\[find-tag], the buffer it finds the tag
  2531. in is given a local value of this variable which is the name of the tags
  2532. file the tag was in." t nil)
  2533.  
  2534. (autoload (quote tags-table-files) "etags" "\
  2535. Return a list of files in the current tags table.
  2536. Assumes the tags table is the current buffer.
  2537. File names returned are absolute." nil nil)
  2538.  
  2539. (autoload (quote find-tag-noselect) "etags" "\
  2540. Find tag (in current tags table) whose name contains TAGNAME.
  2541. Returns the buffer containing the tag's definition and moves its point there,
  2542. but does not select the buffer.
  2543. The default for TAGNAME is the expression in the buffer near point.
  2544.  
  2545. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2546. another tag that matches the last tagname or regexp used.  When there are
  2547. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2548. is the atom `-' (interactively, with prefix arg that is a negative number
  2549. or just \\[negative-argument]), pop back to the previous tag gone to.
  2550.  
  2551. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
  2552.  
  2553. See documentation of variable `tags-file-name'." t nil)
  2554.  
  2555. (autoload (quote find-tag) "etags" "\
  2556. Find tag (in current tags table) whose name contains TAGNAME.
  2557. Select the buffer containing the tag's definition, and move point there.
  2558. The default for TAGNAME is the expression in the buffer around or before point.
  2559.  
  2560. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2561. another tag that matches the last tagname or regexp used.  When there are
  2562. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2563. is the atom `-' (interactively, with prefix arg that is a negative number
  2564. or just \\[negative-argument]), pop back to the previous tag gone to.
  2565.  
  2566. See documentation of variable `tags-file-name'." t nil)
  2567. (define-key esc-map "." 'find-tag)
  2568.  
  2569. (autoload (quote find-tag-other-window) "etags" "\
  2570. Find tag (in current tags table) whose name contains TAGNAME.
  2571. Select the buffer containing the tag's definition in another window, and
  2572. move point there.  The default for TAGNAME is the expression in the buffer
  2573. around or before point.
  2574.  
  2575. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2576. another tag that matches the last tagname or regexp used.  When there are
  2577. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2578. is negative (interactively, with prefix arg that is a negative number or
  2579. just \\[negative-argument]), pop back to the previous tag gone to.
  2580.  
  2581. See documentation of variable `tags-file-name'." t nil)
  2582. (define-key ctl-x-4-map "." 'find-tag-other-window)
  2583.  
  2584. (autoload (quote find-tag-other-frame) "etags" "\
  2585. Find tag (in current tags table) whose name contains TAGNAME.
  2586. Select the buffer containing the tag's definition in another frame, and
  2587. move point there.  The default for TAGNAME is the expression in the buffer
  2588. around or before point.
  2589.  
  2590. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2591. another tag that matches the last tagname or regexp used.  When there are
  2592. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2593. is negative (interactively, with prefix arg that is a negative number or
  2594. just \\[negative-argument]), pop back to the previous tag gone to.
  2595.  
  2596. See documentation of variable `tags-file-name'." t nil)
  2597. (define-key ctl-x-5-map "." 'find-tag-other-frame)
  2598.  
  2599. (autoload (quote find-tag-regexp) "etags" "\
  2600. Find tag (in current tags table) whose name matches REGEXP.
  2601. Select the buffer containing the tag's definition and move point there.
  2602.  
  2603. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2604. another tag that matches the last tagname or regexp used.  When there are
  2605. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2606. is negative (interactively, with prefix arg that is a negative number or
  2607. just \\[negative-argument]), pop back to the previous tag gone to.
  2608.  
  2609. If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
  2610.  
  2611. See documentation of variable `tags-file-name'." t nil)
  2612.  
  2613. (autoload (quote next-file) "etags" "\
  2614. Select next file among files in current tags table.
  2615. Non-nil first argument (prefix arg, if interactive)
  2616. initializes to the beginning of the list of files in the tags table.
  2617.  
  2618. Non-nil second argument NOVISIT means use a temporary buffer
  2619.  to save time and avoid uninteresting warnings.
  2620.  
  2621. Value is nil if the file was already visited;
  2622. if the file was newly read in, the value is the filename." t nil)
  2623.  
  2624. (autoload (quote tags-loop-continue) "etags" "\
  2625. Continue last \\[tags-search] or \\[tags-query-replace] command.
  2626. Used noninteractively with non-nil argument to begin such a command.
  2627. Two variables control the processing we do on each file:
  2628. the value of `tags-loop-scan' is a form to be executed on each file
  2629. to see if it is interesting (it returns non-nil if so)
  2630. and `tags-loop-operate' is a form to execute to operate on an interesting file
  2631. If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
  2632. (define-key esc-map "," 'tags-loop-continue)
  2633.  
  2634. (autoload (quote tags-search) "etags" "\
  2635. Search through all files listed in tags table for match for REGEXP.
  2636. Stops when a match is found.
  2637. To continue searching for next match, use command \\[tags-loop-continue].
  2638.  
  2639. See documentation of variable `tags-file-name'." t nil)
  2640.  
  2641. (autoload (quote tags-query-replace) "etags" "\
  2642. Query-replace-regexp FROM with TO through all files listed in tags table.
  2643. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2644. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  2645. with the command \\[tags-loop-continue].
  2646.  
  2647. See documentation of variable `tags-file-name'." t nil)
  2648.  
  2649. (autoload (quote list-tags) "etags" "\
  2650. Display list of tags in file FILE.
  2651. FILE should not contain a directory specification
  2652. unless it has one in the tags table." t nil)
  2653.  
  2654. (autoload (quote tags-apropos) "etags" "\
  2655. Display list of all tags in tags table REGEXP matches." t nil)
  2656.  
  2657. (autoload (quote select-tags-table) "etags" "\
  2658. Select a tags table file from a menu of those you have already used.
  2659. The list of tags tables to select from is stored in `tags-table-file-list';
  2660. see the doc of that variable if you want to add names to the list." t nil)
  2661.  
  2662. (autoload (quote complete-tag) "etags" "\
  2663. Perform tags completion on the text around point.
  2664. Completes to the set of names listed in the current tags table.  
  2665. The string to complete is chosen in the same way as the default
  2666. for \\[find-tag] (which see)." t nil)
  2667. (define-key esc-map "\t" 'complete-tag)
  2668.  
  2669. ;;;***
  2670.  
  2671. ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "find-dired.el" (11269 25506))
  2672. ;;; Generated autoloads from find-dired.el
  2673.  
  2674. (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) "-ls" "-exec ls -ldi {} \\;") "\
  2675. *Option to `find' to produce an `ls -l'-type listing.")
  2676.  
  2677. (defvar find-grep-options (if (eq system-type (quote berkeley-unix)) "-s" "-l") "\
  2678. *Option to grep to be as silent as possible.
  2679. On Berkeley systems, this is `-s', for others it seems impossible to
  2680. suppress all output, so `-l' is used to print nothing more than the
  2681. file name.")
  2682.  
  2683. (autoload (quote find-dired) "find-dired" "\
  2684. Run `find' and go into dired-mode on a buffer of the output.
  2685. The command run (after changing into DIR) is
  2686.  
  2687.     find . \\( ARGS \\) -ls" t nil)
  2688.  
  2689. (autoload (quote find-name-dired) "find-dired" "\
  2690. Search DIR recursively for files matching the globbing pattern PATTERN,
  2691. and run dired on those files.
  2692. PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
  2693. The command run (after changing into DIR) is
  2694.  
  2695.     find . -name 'PATTERN' -ls" t nil)
  2696.  
  2697. (autoload (quote find-grep-dired) "find-dired" "\
  2698. Find files in DIR containing a regexp ARG and start Dired on output.
  2699. The command run (after changing into DIR) is
  2700.  
  2701.     find . -exec grep -s ARG {} \\; -ls
  2702.  
  2703. Thus ARG can also contain additional grep options." t nil)
  2704.  
  2705. ;;;***
  2706.  
  2707. ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "flow-ctrl.el" (11288 50957))
  2708. ;;; Generated autoloads from flow-ctrl.el
  2709.  
  2710. (autoload (quote enable-flow-control) "flow-ctrl" "\
  2711. Enable use of flow control; let user type C-s as C-\\ and C-q as C-^." t nil)
  2712.  
  2713. (autoload (quote enable-flow-control-on) "flow-ctrl" "\
  2714. Enable flow control if using one of a specified set of terminal types.
  2715. Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
  2716. on VT-100 and H19 terminals.  When flow control is enabled,
  2717. you must type C-\\ to get the effect of a C-s, and type C-^
  2718. to get the effect of a C-q." nil nil)
  2719.  
  2720. ;;;***
  2721.  
  2722. ;;;### (autoloads (font-lock-mode) "font-lock" "/home/fsf/rms/e19/lisp/font-lock.el" (11325 54485))
  2723. ;;; Generated autoloads from /home/fsf/rms/e19/lisp/font-lock.el
  2724.  
  2725. (defvar font-lock-mode-hook nil "\
  2726. Function or functions to run on entry to Font Lock mode.")
  2727.  
  2728. (autoload (quote font-lock-mode) "font-lock" "\
  2729. Toggle Font Lock mode.
  2730. With arg, turn Font Lock mode on if and only if arg is positive.
  2731.  
  2732. When Font Lock mode is enabled, text is fontified as you type it:
  2733.  
  2734.  - comments are displayed in `font-lock-comment-face';
  2735.      (That is a variable whose value should be a face name.)
  2736.  - strings are displayed in `font-lock-string-face';
  2737.  - documentation strings are displayed in `font-lock-doc-string-face';
  2738.  - function and variable names in their defining forms are displayed
  2739.    in `font-lock-function-name-face';
  2740.  - and certain other expressions are displayed in other faces
  2741.    according to the value of the variable `font-lock-keywords'.
  2742.  
  2743. When you turn Font Lock mode on/off, the buffer is fontified/defontified.
  2744. To fontify a buffer without having newly typed text become fontified, you
  2745. can use \\[font-lock-fontify-buffer]." t nil)
  2746.  
  2747. ;;;***
  2748.  
  2749. ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "forms.el" (11336 20307))
  2750. ;;; Generated autoloads from forms.el
  2751.  
  2752. (autoload (quote forms-mode) "forms" "\
  2753. Major mode to visit files in a field-structured manner using a form.
  2754.  
  2755. Commands (prefix with C-c if not in read-only mode):
  2756. \\{forms-mode-map}" t nil)
  2757.  
  2758. (autoload (quote forms-find-file) "forms" "\
  2759. Visit a file in Forms mode." t nil)
  2760.  
  2761. (autoload (quote forms-find-file-other-window) "forms" "\
  2762. Visit a file in Forms mode in other window." t nil)
  2763.  
  2764. ;;;***
  2765.  
  2766. ;;;### (autoloads (fortran-mode) "fortran" "fortran.el" (11285 51227))
  2767. ;;; Generated autoloads from fortran.el
  2768.  
  2769. (defvar fortran-tab-mode-default nil "\
  2770. *Default tabbing/carriage control style for empty files in Fortran mode.
  2771. A value of t specifies tab-digit style of continuation control.
  2772. A value of nil specifies that continuation lines are marked
  2773. with a character in column 6.")
  2774.  
  2775. (autoload (quote fortran-mode) "fortran" "\
  2776. Major mode for editing Fortran code.
  2777. \\[fortran-indent-line] indents the current Fortran line correctly. 
  2778. DO statements must not share a common CONTINUE.
  2779.  
  2780. Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
  2781.  
  2782. Key definitions:
  2783. \\{fortran-mode-map}
  2784.  
  2785. Variables controlling indentation style and extra features:
  2786.  
  2787.  comment-start
  2788.     Normally nil in Fortran mode.  If you want to use comments
  2789.     starting with `!', set this to the string \"!\".
  2790.  fortran-do-indent
  2791.     Extra indentation within do blocks.  (default 3)
  2792.  fortran-if-indent
  2793.     Extra indentation within if blocks.  (default 3)
  2794.  fortran-structure-indent
  2795.     Extra indentation within structure, union and map blocks.  (default 3)
  2796.  fortran-continuation-indent
  2797.     Extra indentation applied to continuation statements.  (default 5)
  2798.  fortran-comment-line-extra-indent
  2799.     Amount of extra indentation for text within full-line comments. (default 0)
  2800.  fortran-comment-indent-style
  2801.     nil    means don't change indentation of text in full-line comments,
  2802.     fixed  means indent that text at `fortran-comment-line-extra-indent' beyond
  2803.            the value of `fortran-minimum-statement-indent-fixed' (for fixed
  2804.            format continuation style) or `fortran-minimum-statement-indent-tab'
  2805.            (for TAB format continuation style).
  2806.     relative  means indent at `fortran-comment-line-extra-indent' beyond the
  2807.            indentation for a line of code.
  2808.     (default 'fixed)
  2809.  fortran-comment-indent-char
  2810.     Single-character string to be inserted instead of space for
  2811.     full-line comment indentation.  (default \" \")
  2812.  fortran-minimum-statement-indent-fixed
  2813.     Minimum indentation for Fortran statements in fixed format mode. (def.6)
  2814.  fortran-minimum-statement-indent-tab
  2815.     Minimum indentation for Fortran statements in TAB format mode. (default 9)
  2816.  fortran-line-number-indent
  2817.     Maximum indentation for line numbers.  A line number will get
  2818.     less than this much indentation if necessary to avoid reaching
  2819.     column 5.  (default 1)
  2820.  fortran-check-all-num-for-matching-do
  2821.     Non-nil causes all numbered lines to be treated as possible \"continue\"
  2822.     statements.  (default nil)
  2823.  fortran-blink-matching-if 
  2824.     From a Fortran ENDIF statement, blink the matching IF statement.
  2825.     (default nil)
  2826.  fortran-continuation-string
  2827.     Single-character string to be inserted in column 5 of a continuation
  2828.     line.  (default \"$\")
  2829.  fortran-comment-region
  2830.     String inserted by \\[fortran-comment-region] at start of each line in 
  2831.     region.  (default \"c$$$\")
  2832.  fortran-electric-line-number
  2833.     Non-nil causes line number digits to be moved to the correct column 
  2834.     as typed.  (default t)
  2835.  fortran-break-before-delimiters
  2836.     Non-nil causes `fortran-do-auto-fill' breaks lines before delimiters.
  2837.     (default t)
  2838.  fortran-startup-message
  2839.     Set to nil to inhibit message first time Fortran mode is used.
  2840.  
  2841. Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
  2842. with no args, if that value is non-nil." t nil)
  2843.  
  2844. ;;;***
  2845.  
  2846. ;;;### (autoloads (gnus) "gnus" "gnus.el" (11336 19282))
  2847. ;;; Generated autoloads from gnus.el
  2848.  
  2849. (autoload (quote gnus) "gnus" "\
  2850. Read network news.
  2851. If optional argument CONFIRM is non-nil, ask NNTP server." t nil)
  2852.  
  2853. ;;;***
  2854.  
  2855. ;;;### (autoloads (gnus-post-news) "gnuspost" "gnuspost.el" (11280 64406))
  2856. ;;; Generated autoloads from gnuspost.el
  2857.  
  2858. (fset (quote sendnews) (quote gnus-post-news))
  2859.  
  2860. (fset (quote postnews) (quote gnus-post-news))
  2861.  
  2862. (autoload (quote gnus-post-news) "gnuspost" "\
  2863. Begin editing a new USENET news article to be posted.
  2864. Type \\[describe-mode] once editing the article to get a list of commands." t nil)
  2865.  
  2866. ;;;***
  2867.  
  2868. ;;;### (autoloads (gomoku) "gomoku" "gomoku.el" (10948 54946))
  2869. ;;; Generated autoloads from gomoku.el
  2870.  
  2871. (autoload (quote gomoku) "gomoku" "\
  2872. Start a Gomoku game between you and Emacs.
  2873. If a game is in progress, this command allow you to resume it.
  2874. If optional arguments N and M are given, an N by M board is used.
  2875.  
  2876. You and Emacs play in turn by marking a free square.  You mark it with X
  2877. and Emacs marks it with O. The winner is the first to get five contiguous
  2878. marks horizontally, vertically or in diagonal.
  2879.  
  2880. You play by moving the cursor over the square you choose and hitting
  2881. \\<gomoku-mode-map>\\[gomoku-human-plays].
  2882. Use \\[describe-mode] for more info." t nil)
  2883.  
  2884. ;;;***
  2885.  
  2886. ;;;### (autoloads (set-gosmacs-bindings) "gosmacs" "gosmacs.el" (11190 10276))
  2887. ;;; Generated autoloads from gosmacs.el
  2888.  
  2889. (autoload (quote set-gosmacs-bindings) "gosmacs" "\
  2890. Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
  2891. Use \\[set-gnu-bindings] to restore previous global bindings." t nil)
  2892.  
  2893. ;;;***
  2894.  
  2895. ;;;### (autoloads (xdb dbx sdb gdb) "gud" "gud.el" (11332 46975))
  2896. ;;; Generated autoloads from gud.el
  2897.  
  2898. (autoload (quote gdb) "gud" "\
  2899. Run gdb on program FILE in buffer *gud-FILE*.
  2900. The directory containing FILE becomes the initial working directory
  2901. and source-file directory for your debugger." t nil)
  2902.  
  2903. (autoload (quote sdb) "gud" "\
  2904. Run sdb on program FILE in buffer *gud-FILE*.
  2905. The directory containing FILE becomes the initial working directory
  2906. and source-file directory for your debugger." t nil)
  2907.  
  2908. (autoload (quote dbx) "gud" "\
  2909. Run dbx on program FILE in buffer *gud-FILE*.
  2910. The directory containing FILE becomes the initial working directory
  2911. and source-file directory for your debugger." t nil)
  2912.  
  2913. (autoload (quote xdb) "gud" "\
  2914. Run xdb on program FILE in buffer *gud-FILE*.
  2915. The directory containing FILE becomes the initial working directory
  2916. and source-file directory for your debugger.
  2917.  
  2918. You can set the variable 'gud-xdb-directories' to a list of program source
  2919. directories if your program contains sources from more than one directory." t nil)
  2920.  
  2921. ;;;***
  2922.  
  2923. ;;;### (autoloads (hanoi) "hanoi" "hanoi.el" (11324 28709))
  2924. ;;; Generated autoloads from hanoi.el
  2925.  
  2926. (autoload (quote hanoi) "hanoi" "\
  2927. Towers of Hanoi diversion.  Argument is number of rings." t nil)
  2928.  
  2929. ;;;***
  2930.  
  2931. ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "helper.el" (10941 42412))
  2932. ;;; Generated autoloads from helper.el
  2933.  
  2934. (autoload (quote Helper-describe-bindings) "helper" "\
  2935. Describe local key bindings of current mode." t nil)
  2936.  
  2937. (autoload (quote Helper-help) "helper" "\
  2938. Provide help for current mode." t nil)
  2939.  
  2940. ;;;***
  2941.  
  2942. ;;;### (autoloads (hexl-find-file hexl-mode) "hexl" "hexl.el" (11319 6522))
  2943. ;;; Generated autoloads from hexl.el
  2944.  
  2945. (autoload (quote hexl-mode) "hexl" "\
  2946. \\<hexl-mode-map>
  2947. A major mode for editing binary files in hex dump format.
  2948.  
  2949. This function automatically converts a buffer into the hexl format
  2950. using the function `hexlify-buffer'.
  2951.  
  2952. Each line in the buffer has an \"address\" (displayed in hexadecimal)
  2953. representing the offset into the file that the characters on this line
  2954. are at and 16 characters from the file (displayed as hexadecimal
  2955. values grouped every 16 bits) and as their ASCII values.
  2956.  
  2957. If any of the characters (displayed as ASCII characters) are
  2958. unprintable (control or meta characters) they will be replaced as
  2959. periods.
  2960.  
  2961. If `hexl-mode' is invoked with an argument the buffer is assumed to be
  2962. in hexl format.
  2963.  
  2964. A sample format:
  2965.  
  2966.   HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f     ASCII-TEXT
  2967.   --------  ---- ---- ---- ---- ---- ---- ---- ----  ----------------
  2968.   00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64  This is hexl-mod
  2969.   00000010: 652e 2020 4561 6368 206c 696e 6520 7265  e.  Each line re
  2970.   00000020: 7072 6573 656e 7473 2031 3620 6279 7465  presents 16 byte
  2971.   00000030: 7320 6173 2068 6578 6164 6563 696d 616c  s as hexadecimal
  2972.   00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74   ASCII.and print
  2973.   00000050: 6162 6c65 2041 5343 4949 2063 6861 7261  able ASCII chara
  2974.   00000060: 6374 6572 732e 2020 416e 7920 636f 6e74  cters.  Any cont
  2975.   00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949  rol or non-ASCII
  2976.   00000080: 2063 6861 7261 6374 6572 730a 6172 6520   characters.are 
  2977.   00000090: 6469 7370 6c61 7965 6420 6173 2070 6572  displayed as per
  2978.   000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e  iods in the prin
  2979.   000000b0: 7461 626c 6520 6368 6172 6163 7465 7220  table character 
  2980.   000000c0: 7265 6769 6f6e 2e0a                      region..
  2981.  
  2982. Movement is as simple as movement in a normal emacs text buffer.  Most
  2983. cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
  2984. to move the cursor left, right, down, and up).
  2985.  
  2986. Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
  2987. also supported.
  2988.  
  2989. There are several ways to change text in hexl mode:
  2990.  
  2991. ASCII characters (character between space (0x20) and tilde (0x7E)) are
  2992. bound to self-insert so you can simply type the character and it will
  2993. insert itself (actually overstrike) into the buffer.
  2994.  
  2995. \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
  2996. it isn't bound to self-insert.  An octal number can be supplied in place
  2997. of another key to insert the octal number's ASCII representation.
  2998.  
  2999. \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
  3000. into the buffer at the current point.
  3001.  
  3002. \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
  3003. into the buffer at the current point.
  3004.  
  3005. \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
  3006. into the buffer at the current point.
  3007.  
  3008. \\[hexl-mode-exit] will exit hexl-mode.
  3009.  
  3010. Note: saving the file with any of the usual Emacs commands
  3011. will actually convert it back to binary format while saving.
  3012.  
  3013. You can use \\[hexl-find-file] to visit a file in hexl-mode.
  3014.  
  3015. \\[describe-bindings] for advanced commands." t nil)
  3016.  
  3017. (autoload (quote hexl-find-file) "hexl" "\
  3018. Edit file FILENAME in hexl-mode.
  3019. Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
  3020.  
  3021. ;;;***
  3022.  
  3023. ;;;### (autoloads (hide-ifdef-mode) "hideif" "hideif.el" (11285 51258))
  3024. ;;; Generated autoloads from hideif.el
  3025.  
  3026. (autoload (quote hide-ifdef-mode) "hideif" "\
  3027. Toggle Hide-Ifdef mode.  This is a minor mode, albeit a large one.
  3028. With ARG, turn Hide-Ifdef mode on iff arg is positive.
  3029. In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
  3030. would eliminate may be hidden from view.  Several variables affect
  3031. how the hiding is done:
  3032.  
  3033. hide-ifdef-env
  3034.     An association list of defined and undefined symbols for the
  3035.     current buffer.  Initially, the global value of `hide-ifdef-env'
  3036.     is used.
  3037.  
  3038. hide-ifdef-define-alist
  3039.     An association list of defined symbol lists.  
  3040.         Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
  3041.         and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
  3042.         from one of the lists in `hide-ifdef-define-alist'.
  3043.  
  3044. hide-ifdef-lines
  3045.     Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
  3046.     #endif lines when hiding.
  3047.  
  3048. hide-ifdef-initially
  3049.     Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
  3050.     is activated.
  3051.  
  3052. hide-ifdef-read-only
  3053.     Set to non-nil if you want to make buffers read only while hiding.
  3054.     After `show-ifdefs', read-only status is restored to previous value.
  3055.  
  3056. \\{hide-ifdef-mode-map}" t nil)
  3057.  
  3058. (defvar hide-ifdef-initially nil "\
  3059. *Non-nil if `hide-ifdefs' should be called when Hide-Ifdef mode
  3060. is first activated.")
  3061.  
  3062. (defvar hide-ifdef-read-only nil "\
  3063. *Set to non-nil if you want buffer to be read-only while hiding text.")
  3064.  
  3065. (defvar hide-ifdef-lines nil "\
  3066. *Set to t if you don't want to see the #ifX, #else, and #endif lines.")
  3067.  
  3068. ;;;***
  3069.  
  3070. ;;;### (autoloads (make-hippie-expand-function hippie-expand) "hippie-exp" "hippie-exp.el" (11336 59237))
  3071. ;;; Generated autoloads from hippie-exp.el
  3072.  
  3073. (defvar hippie-expand-try-functions-list (quote (try-complete-file-name try-expand-all-abbrevs try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-complete-lisp-symbol)) "\
  3074. The list of expansion functions tried in order by `hippie-expand'.
  3075. To change the behavior of `hippie-expand', remove, change the order of,
  3076. or insert functions in this list.")
  3077.  
  3078. (defvar hippie-expand-verbose t "\
  3079. *Non-nil makes `hippie-expand' output which function it is trying.")
  3080.  
  3081. (defvar hippie-expand-max-buffers nil "\
  3082. *The maximum number of buffers (apart from the current) searched.
  3083. If nil, all buffers are searched.")
  3084.  
  3085. (autoload (quote hippie-expand) "hippie-exp" "\
  3086. Try to expand text before point, using multiple methods.
  3087. The expansion functions in `hippie-expand-try-functions-list' are
  3088. tried in order, until a possible expansion is found.  Repeated
  3089. application of `hippie-expand' inserts successively possible
  3090. expansions.  
  3091. With a positive numeric argument, jumps directly to the ARG next
  3092. function in this list.  With a negative argument or just \\[universal-argument], 
  3093. undoes the expansion." t nil)
  3094.  
  3095. (autoload (quote make-hippie-expand-function) "hippie-exp" "\
  3096. Construct a function similar to `hippie-expand'.
  3097. Make it use the expansion functions in TRY-LIST.  An optional second
  3098. argument VERBOSE non-nil makes the function verbose." nil t)
  3099.  
  3100. ;;;***
  3101.  
  3102. ;;;### (autoloads (inferior-lisp) "inf-lisp" "inf-lisp.el" (11294 14427))
  3103. ;;; Generated autoloads from inf-lisp.el
  3104.  
  3105. (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\
  3106. *What not to save on inferior Lisp's input history.
  3107. Input matching this regexp is not saved on the input history in Inferior Lisp
  3108. mode.  Default is whitespace followed by 0 or 1 single-letter colon-keyword 
  3109. (as in :a, :c, etc.)")
  3110.  
  3111. (defvar inferior-lisp-program "lisp" "\
  3112. *Program name for invoking an inferior Lisp with for Inferior Lisp mode.")
  3113.  
  3114. (defvar inferior-lisp-load-command "(load \"%s\")
  3115. " "\
  3116. *Format-string for building a Lisp expression to load a file.
  3117. This format string should use `%s' to substitute a file name
  3118. and should result in a Lisp expression that will command the inferior Lisp
  3119. to load that file.  The default works acceptably on most Lisps.
  3120. The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\
  3121. \"
  3122. produces cosmetically superior output for this application,
  3123. but it works only in Common Lisp.")
  3124.  
  3125. (defvar inferior-lisp-prompt "^[^> ]*>+:? *" "\
  3126. Regexp to recognise prompts in the Inferior Lisp mode.
  3127. Defaults to \"^[^> ]*>+:? *\", which works pretty good for Lucid, kcl,
  3128. and franz.  This variable is used to initialize `comint-prompt-regexp' in the 
  3129. Inferior Lisp buffer.
  3130.  
  3131. More precise choices:
  3132. Lucid Common Lisp: \"^\\(>\\|\\(->\\)+\\) *\"
  3133. franz: \"^\\(->\\|<[0-9]*>:\\) *\"
  3134. kcl: \"^>+ *\"
  3135.  
  3136. This is a fine thing to set in your .emacs file.")
  3137.  
  3138. (defvar inferior-lisp-mode-hook (quote nil) "\
  3139. *Hook for customising Inferior Lisp mode.")
  3140.  
  3141. (autoload (quote inferior-lisp) "inf-lisp" "\
  3142. Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'.
  3143. If there is a process already running in `*inferior-lisp*', just switch
  3144. to that buffer.
  3145. With argument, allows you to edit the command line (default is value
  3146. of `inferior-lisp-program').  Runs the hooks from
  3147. `inferior-lisp-mode-hook' (after the `comint-mode-hook' is run).
  3148. (Type \\[describe-mode] in the process buffer for a list of commands.)" t nil)
  3149.  
  3150. (defalias (quote run-lisp) (quote inferior-lisp))
  3151.  
  3152. ;;;***
  3153.  
  3154. ;;;### (autoloads (Info-goto-emacs-key-command-node Info-goto-emacs-command-node info) "info" "info.el" (11299 35162))
  3155. ;;; Generated autoloads from info.el
  3156.  
  3157. (autoload (quote info) "info" "\
  3158. Enter Info, the documentation browser.
  3159. Optional argument FILE specifies the file to examine;
  3160. the default is the top-level directory of Info.
  3161.  
  3162. In interactive use, a prefix argument directs this command
  3163. to read a file name from the minibuffer." t nil)
  3164.  
  3165. (autoload (quote Info-goto-emacs-command-node) "info" "\
  3166. Go to the Info node in the Emacs manual for command COMMAND." t nil)
  3167.  
  3168. (autoload (quote Info-goto-emacs-key-command-node) "info" "\
  3169. Go to the Info node in the Emacs manual the command bound to KEY, a string.
  3170. Interactively, if the binding is execute-extended-command, a command is read." t nil)
  3171.  
  3172. ;;;***
  3173.  
  3174. ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "informat.el" (11136 13191))
  3175. ;;; Generated autoloads from informat.el
  3176.  
  3177. (autoload (quote Info-tagify) "informat" "\
  3178. Create or update Info-file tag table in current buffer." t nil)
  3179.  
  3180. (autoload (quote Info-split) "informat" "\
  3181. Split an info file into an indirect file plus bounded-size subfiles.
  3182. Each subfile will be up to 50,000 characters plus one node.
  3183.  
  3184. To use this command, first visit a large Info file that has a tag
  3185. table.  The buffer is modified into a (small) indirect info file which
  3186. should be saved in place of the original visited file.
  3187.  
  3188. The subfiles are written in the same directory the original file is
  3189. in, with names generated by appending `-' and a number to the original
  3190. file name.  The indirect file still functions as an Info file, but it
  3191. contains just the tag table and a directory of subfiles." t nil)
  3192.  
  3193. (autoload (quote Info-validate) "informat" "\
  3194. Check current buffer for validity as an Info file.
  3195. Check that every node pointer points to an existing node." t nil)
  3196.  
  3197. (autoload (quote batch-info-validate) "informat" "\
  3198. Runs `Info-validate' on the files remaining on the command line.
  3199. Must be used only with -batch, and kills Emacs on completion.
  3200. Each file will be processed even if an error occurred previously.
  3201. For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
  3202.  
  3203. ;;;***
  3204.  
  3205. ;;;### (autoloads (ispell-region ispell-word ispell) "ispell" "ispell.el" (11332 65354))
  3206. ;;; Generated autoloads from ispell.el
  3207.  
  3208. (autoload (quote ispell) "ispell" "\
  3209. Run Ispell over current buffer's visited file.
  3210. First the file is scanned for misspelled words, then Ispell
  3211. enters a loop with the following commands for every misspelled word:
  3212.  
  3213. DIGIT    Near miss selector.  If the misspelled word is close to
  3214.     some words in the dictionary, they are offered as near misses.
  3215. r    Replace.  Replace the word with a string you type.  Each word
  3216.     of your new string is also checked.
  3217. i    Insert.  Insert this word in your private dictionary (kept in
  3218.     `$HOME/ispell.words').
  3219. a    Accept.  Accept this word for the rest of this editing session,
  3220.      but don't put it in your private dictionary.
  3221. l    Lookup.  Look for a word in the dictionary by fast binary
  3222.     search, or search for a regular expression in the dictionary
  3223.     using grep.
  3224. SPACE    Accept the word this time, but complain if it is seen again.
  3225. q, \\[keyboard-quit]    Leave the command loop.  You can come back later with \\[ispell-next]." t nil)
  3226.  
  3227. (defalias (quote ispell-buffer) (quote ispell))
  3228.  
  3229. (autoload (quote ispell-word) "ispell" "\
  3230. Check the spelling of the word under the cursor.
  3231. See the command `ispell' for more information.
  3232. With a prefix argument, resume handling of the previous Ispell command." t nil)
  3233.  
  3234. (define-key esc-map "$" (quote ispell-word))
  3235.  
  3236. (autoload (quote ispell-region) "ispell" "\
  3237. Check the spelling for all of the words in the region." t nil)
  3238.  
  3239. ;;;***
  3240.  
  3241. ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" (11181 53296))
  3242. ;;; Generated autoloads from ledit.el
  3243.  
  3244. (defconst ledit-save-files t "\
  3245. *Non-nil means Ledit should save files before transferring to Lisp.")
  3246.  
  3247. (defconst ledit-go-to-lisp-string "%?lisp" "\
  3248. *Shell commands to execute to resume Lisp job.")
  3249.  
  3250. (defconst ledit-go-to-liszt-string "%?liszt" "\
  3251. *Shell commands to execute to resume Lisp compiler job.")
  3252.  
  3253. (autoload (quote ledit-mode) "ledit" "\
  3254. \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
  3255. Like Lisp mode, plus these special commands:
  3256.   \\[ledit-save-defun]    -- record defun at or after point
  3257.        for later transmission to Lisp job.
  3258.   \\[ledit-save-region] -- record region for later transmission to Lisp job.
  3259.   \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
  3260.   \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
  3261.        and transmit saved text.
  3262. \\{ledit-mode-map}
  3263. To make Lisp mode automatically change to Ledit mode,
  3264. do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
  3265.  
  3266. (autoload (quote ledit-from-lisp-mode) "ledit" nil nil nil)
  3267.  
  3268. ;;;***
  3269.  
  3270. ;;;### (autoloads (life) "life" "life.el" (11285 51286))
  3271. ;;; Generated autoloads from life.el
  3272.  
  3273. (autoload (quote life) "life" "\
  3274. Run Conway's Life simulation.
  3275. The starting pattern is randomly selected.  Prefix arg (optional first
  3276. arg non-nil from a program) is the number of seconds to sleep between
  3277. generations (this defaults to 1)." t nil)
  3278.  
  3279. ;;;***
  3280.  
  3281. ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (11215 17597))
  3282. ;;; Generated autoloads from loadhist.el
  3283.  
  3284. (autoload (quote unload-feature) "loadhist" "\
  3285. Unload the library that provided FEATURE, restoring all its autoloads.
  3286. If the feature is required by any other loaded code, and optional FORCE
  3287. is nil, raise an error." t nil)
  3288.  
  3289. ;;;***
  3290.  
  3291. ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "lpr.el" (11187 44821))
  3292. ;;; Generated autoloads from lpr.el
  3293.  
  3294. (defvar lpr-switches nil "\
  3295. *List of strings to pass as extra switch args to lpr when it is invoked.")
  3296.  
  3297. (defvar lpr-command (if (memq system-type (quote (usg-unix-v dgux-unix hpux silicon-graphics-unix))) "lp" "lpr") "\
  3298. *Shell command for printing a file")
  3299.  
  3300. (autoload (quote lpr-buffer) "lpr" "\
  3301. Print buffer contents as with Unix command `lpr'.
  3302. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3303.  
  3304. (autoload (quote print-buffer) "lpr" "\
  3305. Print buffer contents as with Unix command `lpr -p'.
  3306. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3307.  
  3308. (autoload (quote lpr-region) "lpr" "\
  3309. Print region contents as with Unix command `lpr'.
  3310. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3311.  
  3312. (autoload (quote print-region) "lpr" "\
  3313. Print region contents as with Unix command `lpr -p'.
  3314. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3315.  
  3316. ;;;***
  3317.  
  3318. ;;;### (autoloads (phases-of-moon) "lunar" "lunar.el" (11298 18264))
  3319. ;;; Generated autoloads from lunar.el
  3320.  
  3321. (autoload (quote phases-of-moon) "lunar" "\
  3322. Display the quarters of the moon for last month, this month, and next month.
  3323. If called with an optional prefix argument, prompts for month and year.
  3324.  
  3325. This function is suitable for execution in a .emacs file." t nil)
  3326.  
  3327. ;;;***
  3328.  
  3329. ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "macros.el" (11285 51300))
  3330. ;;; Generated autoloads from macros.el
  3331.  
  3332. (autoload (quote name-last-kbd-macro) "macros" "\
  3333. Assign a name to the last keyboard macro defined.
  3334. Argument SYMBOL is the name to define.
  3335. The symbol's function definition becomes the keyboard macro string.
  3336. Such a \"function\" cannot be called from Lisp, but it is a valid editor command." t nil)
  3337.  
  3338. (autoload (quote insert-kbd-macro) "macros" "\
  3339. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  3340. Optional second arg KEYS means also record the keys it is on
  3341. (this is the prefix argument, when calling interactively).
  3342.  
  3343. This Lisp code will, when executed, define the kbd macro with the same
  3344. definition it has now.  If you say to record the keys, the Lisp code
  3345. will also rebind those keys to the macro.  Only global key bindings
  3346. are recorded since executing this Lisp code always makes global
  3347. bindings.
  3348.  
  3349. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  3350. use this command, and then save the file." t nil)
  3351.  
  3352. (autoload (quote kbd-macro-query) "macros" "\
  3353. Query user during kbd macro execution.
  3354.   With prefix argument, enters recursive edit, reading keyboard
  3355. commands even within a kbd macro.  You can give different commands
  3356. each time the macro executes.
  3357.   Without prefix argument, asks whether to continue running the macro.
  3358. Your options are: \\<query-replace-map>
  3359. \\[act]    Finish this iteration normally and continue with the next.
  3360. \\[skip]    Skip the rest of this iteration, and start the next.
  3361. \\[exit]    Stop the macro entirely right now.
  3362. \\[recenter]    Redisplay the screen, then ask again.
  3363. \\[edit]    Enter recursive edit; ask again when you exit from that." t nil)
  3364.  
  3365. (autoload (quote apply-macro-to-region-lines) "macros" "\
  3366. For each complete line between point and mark, move to the beginning
  3367. of the line, and run the last keyboard macro.
  3368.  
  3369. When called from lisp, this function takes two arguments TOP and
  3370. BOTTOM, describing the current region.  TOP must be before BOTTOM.
  3371. The optional third argument MACRO specifies a keyboard macro to
  3372. execute.
  3373.  
  3374. This is useful for quoting or unquoting included text, adding and
  3375. removing comments, or producing tables where the entries are regular.
  3376.  
  3377. For example, in Usenet articles, sections of text quoted from another
  3378. author are indented, or have each line start with `>'.  To quote a
  3379. section of text, define a keyboard macro which inserts `>', put point
  3380. and mark at opposite ends of the quoted section, and use
  3381. `\\[apply-macro-to-region-lines]' to mark the entire section.
  3382.  
  3383. Suppose you wanted to build a keyword table in C where each entry
  3384. looked like this:
  3385.  
  3386.     { \"foo\", foo_data, foo_function }, 
  3387.     { \"bar\", bar_data, bar_function },
  3388.     { \"baz\", baz_data, baz_function },
  3389.  
  3390. You could enter the names in this format:
  3391.  
  3392.     foo
  3393.     bar
  3394.     baz
  3395.  
  3396. and write a macro to massage a word into a table entry:
  3397.  
  3398.     \\C-x (
  3399.        \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
  3400.     \\C-x )
  3401.  
  3402. and then select the region of un-tablified names and use
  3403. `\\[apply-macro-to-region-lines]' to build the table from the names.
  3404. " t nil)
  3405.  
  3406. (define-key ctl-x-map "q" (quote kbd-macro-query))
  3407.  
  3408. ;;;***
  3409.  
  3410. ;;;### (autoloads nil "mail-utils" "mail-utils.el" (11323 3305))
  3411. ;;; Generated autoloads from mail-utils.el
  3412.  
  3413. (defvar mail-use-rfc822 nil "\
  3414. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  3415. Otherwise, (the default) use a smaller, somewhat faster, and
  3416. often correct parser.")
  3417.  
  3418. ;;;***
  3419.  
  3420. ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) "mailabbrev" "mailabbrev.el" (11324 36346))
  3421. ;;; Generated autoloads from mailabbrev.el
  3422.  
  3423. (autoload (quote mail-abbrevs-setup) "mailabbrev" nil nil nil)
  3424.  
  3425. (autoload (quote build-mail-abbrevs) "mailabbrev" "\
  3426. Read mail aliases from `~/.mailrc' file and set `mail-abbrevs'." nil nil)
  3427.  
  3428. (autoload (quote define-mail-abbrev) "mailabbrev" "\
  3429. Define NAME as a mail-abbrev that translates to DEFINITION.
  3430. If DEFINITION contains multiple addresses, separate them with commas." t nil)
  3431.  
  3432. ;;;***
  3433.  
  3434. ;;;### (autoloads (define-mail-alias) "mailalias" "mailalias.el" (11294 13866))
  3435. ;;; Generated autoloads from mailalias.el
  3436.  
  3437. (autoload (quote define-mail-alias) "mailalias" "\
  3438. Define NAME as a mail alias that translates to DEFINITION.
  3439. This means that sending a message to NAME will actually send to DEFINITION.
  3440. DEFINITION can be one or more mail addresses separated by commas." t nil)
  3441.  
  3442. ;;;***
  3443.  
  3444. ;;;### (autoloads (makefile-mode) "makefile" "makefile.el" (11285 53103))
  3445. ;;; Generated autoloads from makefile.el
  3446.  
  3447. (autoload (quote makefile-mode) "makefile" "\
  3448. Major mode for editing Makefiles.
  3449. Calling this function invokes the function(s) \"makefile-mode-hook\" before
  3450. doing anything else.
  3451.  
  3452. \\{makefile-mode-map}
  3453.  
  3454. In the browser, use the following keys:
  3455.  
  3456. \\{makefile-browser-map}
  3457.  
  3458. makefile-mode can be configured by modifying the following
  3459. variables:
  3460.  
  3461. makefile-mode-name:
  3462.     The \"pretty name\" of makefile-mode, as it
  3463.     appears in the modeline.
  3464.  
  3465. makefile-browser-buffer-name:
  3466.     Name of the macro- and target browser buffer.
  3467.  
  3468. makefile-target-colon:
  3469.     The string that gets appended to all target names
  3470.     inserted by makefile-insert-target.
  3471.     \":\" or \"::\" are quite common values.
  3472.  
  3473. makefile-macro-assign:
  3474.    The string that gets appended to all macro names
  3475.    inserted by makefile-insert-macro.
  3476.    The normal value should be \" = \", since this is what
  3477.    standard make expects. However, newer makes such as dmake
  3478.    allow a larger variety of different macro assignments, so you
  3479.    might prefer to use \" += \" or \" := \" .
  3480.  
  3481. makefile-tab-after-target-colon:
  3482.    If you want a TAB (instead of a space) to be appended after the
  3483.    target colon, then set this to a non-nil value.
  3484.  
  3485. makefile-browser-leftmost-column:
  3486.    Number of blanks to the left of the browser selection mark.
  3487.  
  3488. makefile-browser-cursor-column:
  3489.    Column in which the cursor is positioned when it moves
  3490.    up or down in the browser.
  3491.  
  3492. makefile-browser-selected-mark:
  3493.    String used to mark selected entries in the browser.
  3494.  
  3495. makefile-browser-unselected-mark:
  3496.    String used to mark unselected entries in the browser.
  3497.  
  3498. makefile-browser-auto-advance-after-selection-p:
  3499.    If this variable is set to a non-nil value the cursor
  3500.    will automagically advance to the next line after an item
  3501.    has been selected in the browser.
  3502.  
  3503. makefile-pickup-everything-picks-up-filenames-p:
  3504.    If this variable is set to a non-nil value then
  3505.    makefile-pickup-everything also picks up filenames as targets
  3506.    (i.e. it calls makefile-find-filenames-as-targets), otherwise
  3507.    filenames are omitted.
  3508.  
  3509. makefile-cleanup-continuations-p:
  3510.    If this variable is set to a non-nil value then makefile-mode
  3511.    will assure that no line in the file ends with a backslash
  3512.    (the continuation character) followed by any whitespace.
  3513.    This is done by silently removing the trailing whitespace, leaving
  3514.    the backslash itself intact.
  3515.    IMPORTANT: Please note that enabling this option causes makefile-mode
  3516.    to MODIFY A FILE WITHOUT YOUR CONFIRMATION when 'it seems necessary'.
  3517.  
  3518. makefile-browser-hook:
  3519.    A function or list of functions to be called just before the
  3520.    browser is entered. This is executed in the makefile buffer.
  3521.  
  3522. makefile-special-targets-list:
  3523.    List of special targets. You will be offered to complete
  3524.    on one of those in the minibuffer whenever you enter a \".\"
  3525.    at the beginning of a line in makefile-mode." t nil)
  3526.  
  3527. ;;;***
  3528.  
  3529. ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (11181 53304))
  3530. ;;; Generated autoloads from makesum.el
  3531.  
  3532. (autoload (quote make-command-summary) "makesum" "\
  3533. Make a summary of current key bindings in the buffer *Summary*.
  3534. Previous contents of that buffer are killed first." t nil)
  3535.  
  3536. ;;;***
  3537.  
  3538. ;;;### (autoloads (manual-entry) "man" "man.el" (11321 63369))
  3539. ;;; Generated autoloads from man.el
  3540.  
  3541. (autoload (quote manual-entry) "man" "\
  3542. Get a Un*x manual page and put it in a buffer.
  3543. This command is the top-level command in the man package.  It runs a Un*x
  3544. command to retrieve and clean a manpage in the background and places the
  3545. results in a Man mode (manpage browsing) buffer.  See variable
  3546. `Man-notify' for what happens when the buffer is ready.
  3547. Universal argument ARG, is passed to `Man-getpage-in-background'." t nil)
  3548.  
  3549. ;;;***
  3550.  
  3551. ;;;### (autoloads (map-y-or-n-p) "map-ynp" "map-ynp.el" (11319 45784))
  3552. ;;; Generated autoloads from map-ynp.el
  3553.  
  3554. (autoload (quote map-y-or-n-p) "map-ynp" "\
  3555. Ask a series of boolean questions.
  3556. Takes args PROMPTER ACTOR LIST, and optional args HELP and ACTION-ALIST.
  3557.  
  3558. LIST is a list of objects, or a function of no arguments to return the next
  3559. object or nil.
  3560.  
  3561. If PROMPTER is a string, the prompt is (format PROMPTER OBJECT).  If not
  3562. a string, PROMPTER is a function of one arg (an object from LIST), which
  3563. returns a string to be used as the prompt for that object.  If the return
  3564. value is not a string, it is eval'd to get the answer; it may be nil to
  3565. ignore the object, t to act on the object without asking the user, or a
  3566. form to do a more complex prompt.
  3567.  
  3568. ACTOR is a function of one arg (an object from LIST),
  3569. which gets called with each object that the user answers `yes' for.
  3570.  
  3571. If HELP is given, it is a list (OBJECT OBJECTS ACTION),
  3572. where OBJECT is a string giving the singular noun for an elt of LIST;
  3573. OBJECTS is the plural noun for elts of LIST, and ACTION is a transitive
  3574. verb describing ACTOR.  The default is (\"object\" \"objects\" \"act on\").
  3575.  
  3576. At the prompts, the user may enter y, Y, or SPC to act on that object;
  3577. n, N, or DEL to skip that object; ! to act on all following objects;
  3578. ESC or q to exit (skip all following objects); . (period) to act on the
  3579. current object and then exit; or \\[help-command] to get help.
  3580.  
  3581. If ACTION-ALIST is given, it is an alist (KEY FUNCTION HELP) of extra keys
  3582. that will be accepted.  KEY is a character; FUNCTION is a function of one
  3583. arg (an object from LIST); HELP is a string.  When the user hits KEY,
  3584. FUNCTION is called.  If it returns non-nil, the object is considered
  3585. \"acted upon\", and the next object from LIST is processed.  If it returns
  3586. nil, the prompt is repeated for the same object.
  3587.  
  3588. This function uses `query-replace-map' to define the standard responses,
  3589. but not all of the responses which `query-replace' understands
  3590. are meaningful here.
  3591.  
  3592. Returns the number of actions taken." nil nil)
  3593.  
  3594. ;;;***
  3595.  
  3596. ;;;### (autoloads (mh-smail mh-rmail) "mh-e" "mh-e.el" (11335 17728))
  3597. ;;; Generated autoloads from mh-e.el
  3598.  
  3599. (autoload (quote mh-rmail) "mh-e" "\
  3600. Inc(orporate) new mail (no arg) or scan a MH mail box (arg given).
  3601. This front end uses the MH mail system, which uses different conventions
  3602. from the usual mail system." t nil)
  3603.  
  3604. (autoload (quote mh-smail) "mh-e" "\
  3605. Compose and send mail with the MH mail system." t nil)
  3606.  
  3607. ;;;***
  3608.  
  3609. ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "mlconvert.el" (11285 51423))
  3610. ;;; Generated autoloads from mlconvert.el
  3611.  
  3612. (autoload (quote convert-mocklisp-buffer) "mlconvert" "\
  3613. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
  3614.  
  3615. ;;;***
  3616.  
  3617. ;;;### (autoloads (modula-2-mode) "modula2" "modula2.el" (11181 53306))
  3618. ;;; Generated autoloads from modula2.el
  3619.  
  3620. (autoload (quote modula-2-mode) "modula2" "\
  3621. This is a mode intended to support program development in Modula-2.
  3622. All control constructs of Modula-2 can be reached by typing C-c
  3623. followed by the first character of the construct.
  3624. \\<m2-mode-map>
  3625.   \\[m2-begin] begin         \\[m2-case] case
  3626.   \\[m2-definition] definition    \\[m2-else] else
  3627.   \\[m2-for] for           \\[m2-header] header
  3628.   \\[m2-if] if            \\[m2-module] module
  3629.   \\[m2-loop] loop          \\[m2-or] or
  3630.   \\[m2-procedure] procedure     Control-c Control-w with
  3631.   \\[m2-record] record        \\[m2-stdio] stdio
  3632.   \\[m2-type] type          \\[m2-until] until
  3633.   \\[m2-var] var           \\[m2-while] while
  3634.   \\[m2-export] export        \\[m2-import] import
  3635.   \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
  3636.   \\[suspend-emacs] suspend Emacs     \\[m2-toggle] toggle
  3637.   \\[m2-compile] compile           \\[m2-next-error] next-error
  3638.   \\[m2-link] link
  3639.  
  3640.    `m2-indent' controls the number of spaces for each indentation.
  3641.    `m2-compile-command' holds the command to compile a Modula-2 program.
  3642.    `m2-link-command' holds the command to link a Modula-2 program." t nil)
  3643.  
  3644. ;;;***
  3645.  
  3646. ;;;### (autoloads (mpuz) "mpuz" "mpuz.el" (11285 51427))
  3647. ;;; Generated autoloads from mpuz.el
  3648.  
  3649. (autoload (quote mpuz) "mpuz" "\
  3650. Multiplication puzzle with GNU Emacs." t nil)
  3651.  
  3652. ;;;***
  3653.  
  3654. ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "novice.el" (11261 24403))
  3655. ;;; Generated autoloads from novice.el
  3656.  
  3657. (setq disabled-command-hook (quote disabled-command-hook))
  3658.  
  3659. (autoload (quote disabled-command-hook) "novice" nil nil nil)
  3660.  
  3661. (autoload (quote enable-command) "novice" "\
  3662. Allow COMMAND to be executed without special confirmation from now on.
  3663. The user's .emacs file is altered so that this will apply
  3664. to future sessions." t nil)
  3665.  
  3666. (autoload (quote disable-command) "novice" "\
  3667. Require special confirmation to execute COMMAND from now on.
  3668. The user's .emacs file is altered so that this will apply
  3669. to future sessions." t nil)
  3670.  
  3671. ;;;***
  3672.  
  3673. ;;;### (autoloads (nroff-mode) "nroff-mode" "nroff-mode.el" (11267 60509))
  3674. ;;; Generated autoloads from nroff-mode.el
  3675.  
  3676. (autoload (quote nroff-mode) "nroff-mode" "\
  3677. Major mode for editing text intended for nroff to format.
  3678. \\{nroff-mode-map}
  3679. Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
  3680. Also, try `nroff-electric-mode', for automatically inserting
  3681. closing requests for requests that are used in matched pairs." t nil)
  3682.  
  3683. ;;;***
  3684.  
  3685. ;;;### (autoloads (edit-options list-options) "options" "options.el" (11181 53232))
  3686. ;;; Generated autoloads from options.el
  3687.  
  3688. (autoload (quote list-options) "options" "\
  3689. Display a list of Emacs user options, with values and documentation." t nil)
  3690.  
  3691. (autoload (quote edit-options) "options" "\
  3692. Edit a list of Emacs user option values.
  3693. Selects a buffer containing such a list,
  3694. in which there are commands to set the option values.
  3695. Type \\[describe-mode] in that buffer for a list of commands." t nil)
  3696.  
  3697. ;;;***
  3698.  
  3699. ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" (11319 20136))
  3700. ;;; Generated autoloads from outline.el
  3701.  
  3702. (autoload (quote outline-mode) "outline" "\
  3703. Set major mode for editing outlines with selective display.
  3704. Headings are lines which start with asterisks: one for major headings,
  3705. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  3706.  
  3707. Body text or subheadings under a heading can be made temporarily
  3708. invisible, or visible again.  Invisible lines are attached to the end 
  3709. of the heading, so they move with it, if the line is killed and yanked
  3710. back.  A heading with text hidden under it is marked with an ellipsis (...).
  3711.  
  3712. Commands:\\<outline-mode-map>
  3713. \\[outline-next-visible-heading]   outline-next-visible-heading      move by visible headings
  3714. \\[outline-previous-visible-heading]   outline-previous-visible-heading
  3715. \\[outline-forward-same-level]   outline-forward-same-level        similar but skip subheadings
  3716. \\[outline-backward-same-level]   outline-backward-same-level
  3717. \\[outline-up-heading]   outline-up-heading            move from subheading to heading
  3718.  
  3719. M-x hide-body    make all text invisible (not headings).
  3720. M-x show-all    make everything in buffer visible.
  3721.  
  3722. The remaining commands are used when point is on a heading line.
  3723. They apply to some of the body or subheadings of that heading.
  3724. \\[hide-subtree]   hide-subtree    make body and subheadings invisible.
  3725. \\[show-subtree]   show-subtree    make body and subheadings visible.
  3726. \\[show-children]   show-children    make direct subheadings visible.
  3727.          No effect on body, or subheadings 2 or more levels down.
  3728.          With arg N, affects subheadings N levels down.
  3729. M-x hide-entry       make immediately following body invisible.
  3730. M-x show-entry       make it visible.
  3731. M-x hide-leaves       make body under heading and under its subheadings invisible.
  3732.              The subheadings remain visible.
  3733. M-x show-branches  make all subheadings at all levels visible.
  3734.  
  3735. The variable `outline-regexp' can be changed to control what is a heading.
  3736. A line is a heading if `outline-regexp' matches something at the
  3737. beginning of the line.  The longer the match, the deeper the level.
  3738.  
  3739. Turning on outline mode calls the value of `text-mode-hook' and then of
  3740. `outline-mode-hook', if they are non-nil." t nil)
  3741.  
  3742. (autoload (quote outline-minor-mode) "outline" "\
  3743. Toggle Outline minor mode.
  3744. With arg, turn Outline minor mode on if arg is positive, off otherwise.
  3745. See the command `outline-mode' for more information on this mode." t nil)
  3746.  
  3747. ;;;***
  3748.  
  3749. ;;;### (autoloads (picture-mode) "picture" "picture.el" (11292 51488))
  3750. ;;; Generated autoloads from picture.el
  3751.  
  3752. (autoload (quote picture-mode) "picture" "\
  3753. Switch to Picture mode, in which a quarter-plane screen model is used.
  3754. Printing characters replace instead of inserting themselves with motion
  3755. afterwards settable by these commands:
  3756.   C-c <      Move left after insertion.
  3757.   C-c >      Move right after insertion.
  3758.   C-c ^      Move up after insertion.
  3759.   C-c .      Move down after insertion.
  3760.   C-c `      Move northwest (nw) after insertion.
  3761.   C-c '      Move northeast (ne) after insertion.
  3762.   C-c /      Move southwest (sw) after insertion.
  3763.   C-c \\   Move southeast (se) after insertion.
  3764. The current direction is displayed in the mode line.  The initial
  3765. direction is right.  Whitespace is inserted and tabs are changed to
  3766. spaces when required by movement.  You can move around in the buffer
  3767. with these commands:
  3768.   \\[picture-move-down]      Move vertically to SAME column in previous line.
  3769.   \\[picture-move-up]      Move vertically to SAME column in next line.
  3770.   \\[picture-end-of-line]      Move to column following last non-whitespace character.
  3771.   \\[picture-forward-column]      Move right inserting spaces if required.
  3772.   \\[picture-backward-column]      Move left changing tabs to spaces if required.
  3773.   C-c C-f Move in direction of current picture motion.
  3774.   C-c C-b Move in opposite direction of current picture motion.
  3775.   Return  Move to beginning of next line.
  3776. You can edit tabular text with these commands:
  3777.   M-Tab      Move to column beneath (or at) next interesting character.
  3778.         `Indents' relative to a previous line.
  3779.   Tab      Move to next stop in tab stop list.
  3780.   C-c Tab Set tab stops according to context of this line.
  3781.         With ARG resets tab stops to default (global) value.
  3782.         See also documentation of variable    picture-tab-chars
  3783.         which defines \"interesting character\".  You can manually
  3784.         change the tab stop list with command \\[edit-tab-stops].
  3785. You can manipulate text with these commands:
  3786.   C-d      Clear (replace) ARG columns after point without moving.
  3787.   C-c C-d Delete char at point - the command normally assigned to C-d.
  3788.   \\[picture-backward-clear-column]  Clear (replace) ARG columns before point, moving back over them.
  3789.   \\[picture-clear-line]      Clear ARG lines, advancing over them.     The cleared
  3790.         text is saved in the kill ring.
  3791.   \\[picture-open-line]      Open blank line(s) beneath current line.
  3792. You can manipulate rectangles with these commands:
  3793.   C-c C-k Clear (or kill) a rectangle and save it.
  3794.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  3795.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  3796.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  3797.   \\[copy-rectangle-to-register]   Copies a rectangle to a register.
  3798.   \\[advertised-undo]   Can undo effects of rectangle overlay commands
  3799.         commands if invoked soon enough.
  3800. You can return to the previous mode with:
  3801.   C-c C-c Which also strips trailing whitespace from every line.
  3802.         Stripping is suppressed by supplying an argument.
  3803.  
  3804. Entry to this mode calls the value of  picture-mode-hook  if non-nil.
  3805.  
  3806. Note that Picture mode commands will work outside of Picture mode, but
  3807. they are not defaultly assigned to keys." t nil)
  3808.  
  3809. (defalias (quote edit-picture) (quote picture-mode))
  3810.  
  3811. ;;;***
  3812.  
  3813. ;;;### (autoloads (run-prolog prolog-mode) "prolog" "prolog.el" (11181 53308))
  3814. ;;; Generated autoloads from prolog.el
  3815.  
  3816. (autoload (quote prolog-mode) "prolog" "\
  3817. Major mode for editing Prolog code for Prologs.
  3818. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  3819. Commands:
  3820. \\{prolog-mode-map}
  3821. Entry to this mode calls the value of `prolog-mode-hook'
  3822. if that value is non-nil." t nil)
  3823.  
  3824. (autoload (quote run-prolog) "prolog" "\
  3825. Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
  3826.  
  3827. ;;;***
  3828.  
  3829. ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "rect.el" (11237 13138))
  3830. ;;; Generated autoloads from rect.el
  3831.  
  3832. (autoload (quote delete-rectangle) "rect" "\
  3833. Delete (don't save) text in rectangle with point and mark as corners.
  3834. The same range of columns is deleted in each line starting with the line
  3835. where the region begins and ending with the line where the region ends." t nil)
  3836.  
  3837. (autoload (quote delete-extract-rectangle) "rect" "\
  3838. Delete contents of rectangle and return it as a list of strings.
  3839. Arguments START and END are the corners of the rectangle.
  3840. The value is list of strings, one for each line of the rectangle." nil nil)
  3841.  
  3842. (autoload (quote extract-rectangle) "rect" "\
  3843. Return contents of rectangle with corners at START and END.
  3844. Value is list of strings, one for each line of the rectangle." nil nil)
  3845.  
  3846. (autoload (quote kill-rectangle) "rect" "\
  3847. Delete rectangle with corners at point and mark; save as last killed one.
  3848. Calling from program, supply two args START and END, buffer positions.
  3849. But in programs you might prefer to use `delete-extract-rectangle'." t nil)
  3850.  
  3851. (autoload (quote yank-rectangle) "rect" "\
  3852. Yank the last killed rectangle with upper left corner at point." t nil)
  3853.  
  3854. (autoload (quote insert-rectangle) "rect" "\
  3855. Insert text of RECTANGLE with upper left corner at point.
  3856. RECTANGLE's first line is inserted at point, its second
  3857. line is inserted at a point vertically under point, etc.
  3858. RECTANGLE should be a list of strings.
  3859. After this command, the mark is at the upper left corner
  3860. and point is at the lower right corner." nil nil)
  3861.  
  3862. (autoload (quote open-rectangle) "rect" "\
  3863. Blank out rectangle with corners at point and mark, shifting text right.
  3864. The text previously in the region is not overwritten by the blanks,
  3865. but instead winds up to the right of the rectangle." t nil)
  3866.  
  3867. (autoload (quote string-rectangle) "rect" "\
  3868. Insert STRING on each line of the region-rectangle, shifting text right.
  3869. The left edge of the rectangle specifies the column for insertion.
  3870. This command does not delete or overwrite any existing text.
  3871.  
  3872. Called from a program, takes three args; START, END and STRING." t nil)
  3873.  
  3874. (autoload (quote clear-rectangle) "rect" "\
  3875. Blank out rectangle with corners at point and mark.
  3876. The text previously in the region is overwritten by the blanks.
  3877. When called from a program, requires two args which specify the corners." t nil)
  3878.  
  3879. ;;;***
  3880.  
  3881. ;;;### (autoloads (reposition-window) "reposition" "reposition.el" (11185 15878))
  3882. ;;; Generated autoloads from reposition.el
  3883.  
  3884. (autoload (quote reposition-window) "reposition" "\
  3885. Make the current definition and/or comment visible.
  3886. Further invocations move it to the top of the window or toggle the
  3887. visibility of comments that precede it.
  3888.   Point is left unchanged unless prefix ARG is supplied.
  3889.   If the definition is fully onscreen, it is moved to the top of the
  3890. window.  If it is partly offscreen, the window is scrolled to get the
  3891. definition (or as much as will fit) onscreen, unless point is in a comment
  3892. which is also partly offscreen, in which case the scrolling attempts to get
  3893. as much of the comment onscreen as possible.
  3894.   Initially `reposition-window' attempts to make both the definition and
  3895. preceding comments visible.  Further invocations toggle the visibility of
  3896. the comment lines.
  3897.   If ARG is non-nil, point may move in order to make the whole defun
  3898. visible (if only part could otherwise be made so), to make the defun line
  3899. visible (if point is in code and it could not be made so, or if only
  3900. comments, including the first comment line, are visible), or to make the
  3901. first comment line visible (if point is in a comment)." t nil)
  3902.  
  3903. (define-key esc-map " " (quote reposition-window))
  3904.  
  3905. ;;;***
  3906.  
  3907. ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (11236 37830))
  3908. ;;; Generated autoloads from resume.el
  3909.  
  3910. (autoload (quote resume-suspend-hook) "resume" "\
  3911. Clear out the file used for transmitting args when Emacs resumes." nil nil)
  3912.  
  3913. ;;;***
  3914.  
  3915. ;;;### (autoloads (make-ring ring-p) "ring" "ring.el" (11227 4056))
  3916. ;;; Generated autoloads from ring.el
  3917.  
  3918. (autoload (quote ring-p) "ring" "\
  3919. Returns t if X is a ring; nil otherwise." nil nil)
  3920.  
  3921. (autoload (quote make-ring) "ring" "\
  3922. Make a ring that can contain SIZE elements." nil nil)
  3923.  
  3924. ;;;***
  3925.  
  3926. ;;;### (autoloads (rlogin-delchar-or-send-Ctrl-D rlogin-send-Ctrl-backslash rlogin-send-Ctrl-Z rlogin-send-Ctrl-C rlogin-mode rlogin-password rlogin-with-args rlogin) "rlogin" "rlogin.el" (11261 49048))
  3927. ;;; Generated autoloads from rlogin.el
  3928.  
  3929. (defvar rlogin-program "rlogin" "\
  3930. *Name of program to invoke rlogin")
  3931.  
  3932. (defvar rlogin-explicit-args nil "\
  3933. *List of arguments to pass to rlogin on the command line.")
  3934.  
  3935. (defvar rlogin-mode-hook nil "\
  3936. *Hooks to run after setting current buffer to rlogin-mode.")
  3937.  
  3938. (defvar rlogin-process-connection-type nil "\
  3939. *If non-`nil', use a pty for the local rlogin process.  
  3940. If `nil', use a pipe (if pipes are supported on the local system).  
  3941.  
  3942. Generally it is better not to waste ptys on systems which have a static
  3943. number of them.  On the other hand, some implementations of `rlogin' assume
  3944. a pty is being used, and errors will result from using a pipe instead.")
  3945.  
  3946. (defvar rlogin-password-paranoia nil "\
  3947. *If non-`nil', query user for a password in the minibuffer when a Password: prompt appears.
  3948. It's also possible to selectively enter passwords without echoing them in
  3949. the minibuffer using the command `rlogin-password' explicitly.")
  3950.  
  3951. (defvar rlogin-mode-map (quote nil))
  3952.  
  3953. (autoload (quote rlogin) "rlogin" "\
  3954. Open a network login connection to HOST via the `rlogin' program.
  3955. Input is sent line-at-a-time to the remote connection.
  3956.  
  3957. Communication with HOST is recorded in a buffer *rlogin-HOST*.
  3958. If a prefix argument is given and the buffer *rlogin-HOST* already exists,
  3959. a new buffer with a different connection will be made. 
  3960.  
  3961. The variable `rlogin-program' contains the name of the actual program to
  3962. run.  It can be a relative or absolute path. 
  3963.  
  3964. The variable `rlogin-explicit-args' is a list of arguments to give to
  3965. the rlogin when starting." t nil)
  3966.  
  3967. (autoload (quote rlogin-with-args) "rlogin" "\
  3968. Open a new rlogin connection to HOST, even if one already exists. 
  3969. String ARGS is given as arguments to the `rlogin' program, overriding the
  3970. value of `rlogin-explicit-args'." t nil)
  3971.  
  3972. (autoload (quote rlogin-password) "rlogin" "\
  3973. Read a password and send it to an rlogin session.
  3974. For each character typed, a `*' is echoed in the minibuffer.
  3975. End with RET, LFD, or ESC.  DEL or C-h rubs out.  C-u kills line.
  3976. C-g aborts attempt to read and send password. 
  3977.  
  3978. Optional argument PROC is the process to which the password should be sent.
  3979. If not provided, send to the process in the current buffer.  This argument
  3980. is intended primarily for use by `rlogin-filter'." t nil)
  3981.  
  3982. (autoload (quote rlogin-mode) "rlogin" "\
  3983. Set major-mode for rlogin sessions. 
  3984. If `rlogin-mode-hook' is set, run it." t nil)
  3985.  
  3986. (autoload (quote rlogin-send-Ctrl-C) "rlogin" nil t nil)
  3987.  
  3988. (autoload (quote rlogin-send-Ctrl-Z) "rlogin" nil t nil)
  3989.  
  3990. (autoload (quote rlogin-send-Ctrl-backslash) "rlogin" nil t nil)
  3991.  
  3992. (autoload (quote rlogin-delchar-or-send-Ctrl-D) "rlogin" "\
  3993. Delete ARG characters forward, or send a C-d to process if at end of
  3994. buffer." t nil)
  3995.  
  3996. ;;;***
  3997.  
  3998. ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail.el" (11334 11170))
  3999. ;;; Generated autoloads from rmail.el
  4000.  
  4001. (defvar rmail-dont-reply-to-names nil "\
  4002. *A regexp specifying names to prune of reply to messages.
  4003. A value of nil means exclude your own name only.")
  4004.  
  4005. (defvar rmail-default-dont-reply-to-names "info-" "\
  4006. A regular expression specifying part of the value of the default value of
  4007. the variable `rmail-dont-reply-to-names', for when the user does not set
  4008. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  4009. value is the user's name.)
  4010. It is useful to set this variable in the site customization file.")
  4011.  
  4012. (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^message-id:\\|^summary-line:" "\
  4013. *Gubbish headers one would rather not see.")
  4014.  
  4015. (defvar rmail-delete-after-output nil "\
  4016. *Non-nil means automatically delete a message that is copied to a file.")
  4017.  
  4018. (defvar rmail-primary-inbox-list nil "\
  4019. *List of files which are inboxes for user's primary mail file `~/RMAIL'.
  4020. `nil' means the default, which is (\"/usr/spool/mail/$USER\")
  4021. (the name varies depending on the operating system,
  4022. and the value of the environment variable MAIL overrides it).")
  4023.  
  4024. (defvar rmail-mail-new-frame nil "\
  4025. *Non-nil means Rmail makes a new frame for composing outgoing mail.")
  4026.  
  4027. (autoload (quote rmail) "rmail" "\
  4028. Read and edit incoming mail.
  4029. Moves messages into file named by  rmail-file-name  (a babyl format file)
  4030.  and edits that file in RMAIL Mode.
  4031. Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
  4032.  
  4033. May be called with filename as argument; then performs rmail editing on
  4034. that file, but does not copy any new mail into the file." t nil)
  4035.  
  4036. (autoload (quote rmail-mode) "rmail" "\
  4037. Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
  4038. All normal editing commands are turned off.
  4039. Instead, these commands are available:
  4040.  
  4041. \\[rmail-beginning-of-message]    Move point to front of this message (same as \\[beginning-of-buffer]).
  4042. \\[scroll-up]    Scroll to next screen of this message.
  4043. \\[scroll-down]    Scroll to previous screen of this message.
  4044. \\[rmail-next-undeleted-message]    Move to Next non-deleted message.
  4045. \\[rmail-previous-undeleted-message]    Move to Previous non-deleted message.
  4046. \\[rmail-next-message]    Move to Next message whether deleted or not.
  4047. \\[rmail-previous-message]    Move to Previous message whether deleted or not.
  4048. \\[rmail-first-message]    Move to the first message in Rmail file.
  4049. \\[rmail-last-message]    Move to the last message in Rmail file.
  4050. \\[rmail-show-message]    Jump to message specified by numeric position in file.
  4051. \\[rmail-search]    Search for string and show message it is found in.
  4052. \\[rmail-delete-forward]    Delete this message, move to next nondeleted.
  4053. \\[rmail-delete-backward]    Delete this message, move to previous nondeleted.
  4054. \\[rmail-undelete-previous-message]    Undelete message.  Tries current message, then earlier messages
  4055.     till a deleted message is found.
  4056. \\[rmail-edit-current-message]    Edit the current message.  \\[rmail-cease-edit] to return to Rmail.
  4057. \\[rmail-expunge]    Expunge deleted messages.
  4058. \\[rmail-expunge-and-save]    Expunge and save the file.
  4059. \\[rmail-quit]       Quit Rmail: expunge, save, then switch to another buffer.
  4060. \\[save-buffer] Save without expunging.
  4061. \\[rmail-get-new-mail]    Move new mail from system spool directory into this file.
  4062. \\[rmail-mail]    Mail a message (same as \\[mail-other-window]).
  4063. \\[rmail-continue]    Continue composing outgoing message started before.
  4064. \\[rmail-reply]    Reply to this message.  Like \\[rmail-mail] but initializes some fields.
  4065. \\[rmail-retry-failure]    Send this message again.  Used on a mailer failure message.
  4066. \\[rmail-forward]    Forward this message to another user.
  4067. \\[rmail-output-to-rmail-file]       Output this message to an Rmail file (append it).
  4068. \\[rmail-output]    Output this message to a Unix-format mail file (append it).
  4069. \\[rmail-input]    Input Rmail file.  Run Rmail on that file.
  4070. \\[rmail-add-label]    Add label to message.  It will be displayed in the mode line.
  4071. \\[rmail-kill-label]    Kill label.  Remove a label from current message.
  4072. \\[rmail-next-labeled-message]   Move to Next message with specified label
  4073.           (label defaults to last one specified).
  4074.           Standard labels: filed, unseen, answered, forwarded, deleted.
  4075.           Any other label is present only if you add it with \\[rmail-add-label].
  4076. \\[rmail-previous-labeled-message]   Move to Previous message with specified label
  4077. \\[rmail-summary]    Show headers buffer, with a one line summary of each message.
  4078. \\[rmail-summary-by-labels]    Summarize only messages with particular label(s).
  4079. \\[rmail-summary-by-recipients]   Summarize only messages with particular recipient(s).
  4080. \\[rmail-summary-by-regexp]   Summarize only messages with particular regexp(s).
  4081. \\[rmail-summary-by-topic]   Summarize only messages with subject line regexp(s).
  4082. \\[rmail-toggle-header]    Toggle display of complete header." t nil)
  4083.  
  4084. (autoload (quote rmail-input) "rmail" "\
  4085. Run Rmail on file FILENAME." t nil)
  4086.  
  4087. ;;;***
  4088.  
  4089. ;;;### (autoloads (rot13-other-window) "rot13" "rot13.el" (11295 37709))
  4090. ;;; Generated autoloads from rot13.el
  4091.  
  4092. (autoload (quote rot13-other-window) "rot13" "\
  4093. Display current buffer in rot 13 in another window." t nil)
  4094.  
  4095. ;;;***
  4096.  
  4097. ;;;### (autoloads (sc-cite-original) "sc" "sc.el" (11297 261))
  4098. ;;; Generated autoloads from sc.el
  4099.  
  4100. (autoload (quote sc-cite-original) "sc" "\
  4101. Hook version of sc-cite.
  4102. This is callable from the various mail and news readers' reply
  4103. function according to the agreed upon standard. See \\[sc-describe]
  4104. for more details.  Sc-cite-original does not do any yanking of the
  4105. original message but it does require a few things:
  4106.  
  4107.      1) The reply buffer is the current buffer.
  4108.  
  4109.      2) The original message has been yanked and inserted into the
  4110.         reply buffer.
  4111.  
  4112.      3) Verbose mail headers from the original message have been
  4113.         inserted into the reply buffer directly before the text of the
  4114.         original message.
  4115.  
  4116.      4) Point is at the beginning of the verbose headers.
  4117.  
  4118.      5) Mark is at the end of the body of text to be cited." nil nil)
  4119.  
  4120. ;;;***
  4121.  
  4122. ;;;### (autoloads (scheme-mode) "scheme" "scheme.el" (11285 51473))
  4123. ;;; Generated autoloads from scheme.el
  4124.  
  4125. (autoload (quote scheme-mode) "scheme" "\
  4126. Major mode for editing Scheme code.
  4127. Editing commands are similar to those of lisp-mode.
  4128.  
  4129. In addition, if an inferior Scheme process is running, some additional
  4130. commands will be defined, for evaluating expressions and controlling
  4131. the interpreter, and the state of the process will be displayed in the
  4132. modeline of all Scheme buffers.  The names of commands that interact
  4133. with the Scheme process start with \"xscheme-\".  For more information
  4134. see the documentation for xscheme-interaction-mode.
  4135.  
  4136. Commands:
  4137. Delete converts tabs to spaces as it moves back.
  4138. Blank lines separate paragraphs.  Semicolons start comments.
  4139. \\{scheme-mode-map}
  4140. Entry to this mode calls the value of scheme-mode-hook
  4141. if that value is non-nil." t nil)
  4142.  
  4143. ;;;***
  4144.  
  4145. ;;;### (autoloads (scribe-mode) "scribe" "scribe.el" (11185 15625))
  4146. ;;; Generated autoloads from scribe.el
  4147.  
  4148. (autoload (quote scribe-mode) "scribe" "\
  4149. Major mode for editing files of Scribe (a text formatter) source.
  4150. Scribe-mode is similar text-mode, with a few extra commands added.
  4151. \\{scribe-mode-map}
  4152.  
  4153. Interesting variables:
  4154.  
  4155. scribe-fancy-paragraphs
  4156.   Non-nil makes Scribe mode use a different style of paragraph separation.
  4157.  
  4158. scribe-electric-quote
  4159.   Non-nil makes insert of double quote use `` or '' depending on context.
  4160.  
  4161. scribe-electric-parenthesis
  4162.   Non-nil makes an open-parenthesis char (one of `([<{')
  4163.   automatically insert its close if typed after an @Command form." t nil)
  4164.  
  4165. ;;;***
  4166.  
  4167. ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "sendmail.el" (11334 11290))
  4168. ;;; Generated autoloads from sendmail.el
  4169.  
  4170. (defvar mail-self-blind nil "\
  4171. Non-nil means insert BCC to self in messages to be sent.
  4172. This is done when the message is initialized,
  4173. so you can remove or alter the BCC field to override the default.")
  4174.  
  4175. (defvar mail-interactive nil "\
  4176. Non-nil means when sending a message wait for and display errors.
  4177. nil means let mailer mail back a message to report errors.")
  4178.  
  4179. (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
  4180. Delete these headers from old message when it's inserted in a reply.")
  4181.  
  4182. (defvar send-mail-function (quote sendmail-send-it) "\
  4183. Function to call to send the current buffer as mail.
  4184. The headers are be delimited by a line which is `mail-header-separator'.")
  4185.  
  4186. (defvar mail-header-separator "--text follows this line--" "\
  4187. *Line used to separate headers from text in messages being composed.")
  4188.  
  4189. (defvar mail-archive-file-name nil "\
  4190. *Name of file to write all outgoing messages in, or nil for none.
  4191. Do not use an rmail file here!  Instead, use its inbox file.")
  4192.  
  4193. (defvar mail-signature nil "\
  4194. *Text inserted at end of mail buffer when a message is initialized.
  4195. If t, it means to insert the contents of the file `~/.signature'.")
  4196.  
  4197. (autoload (quote mail-mode) "sendmail" "\
  4198. Major mode for editing mail to be sent.
  4199. Like Text Mode but with these additional commands:
  4200. C-c C-s  mail-send (send the message)    C-c C-c  mail-send-and-exit
  4201. C-c C-f  move to a header field (and create it if there isn't):
  4202.      C-c C-f C-t  move to To:    C-c C-f C-s  move to Subj:
  4203.      C-c C-f C-b  move to BCC:    C-c C-f C-c  move to CC:
  4204. C-c C-t  move to message text.
  4205. C-c C-y  mail-yank-original (insert current message, in Rmail).
  4206. C-c C-q  mail-fill-yanked-message (fill what was yanked).
  4207. C-c C-v  mail-sent-via (add a sent-via field for each To or CC)." t nil)
  4208.  
  4209. (autoload (quote mail) "sendmail" "\
  4210. Edit a message to be sent.  Prefix arg means resume editing (don't erase).
  4211. When this function returns, the buffer `*mail*' is selected.
  4212. The value is t if the message was newly initialized; otherwise, nil.
  4213.  
  4214. By default, the signature file `~/.signature' is inserted at the end;
  4215. see the variable `mail-signature'.
  4216.  
  4217. \\<mail-mode-map>
  4218. While editing message, type \\[mail-send-and-exit] to send the message and exit.
  4219.  
  4220. Various special commands starting with C-c are available in sendmail mode
  4221. to move to message header fields:
  4222. \\{mail-mode-map}
  4223.  
  4224. If `mail-self-blind' is non-nil, a BCC to yourself is inserted
  4225. when the message is initialized.
  4226.  
  4227. If `mail-default-reply-to' is non-nil, it should be an address (a string);
  4228. a Reply-to: field with that address is inserted.
  4229.  
  4230. If `mail-archive-file-name' is non-nil, an FCC field with that file name
  4231. is inserted.
  4232.  
  4233. If `mail-setup-hook' is bound, its value is called with no arguments
  4234. after the message is initialized.  It can add more default fields.
  4235.  
  4236. When calling from a program, the second through fifth arguments
  4237.  TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
  4238.  the initial contents of those header fields.
  4239.  These arguments should not have final newlines.
  4240. The sixth argument REPLYBUFFER is a buffer whose contents
  4241.  should be yanked if the user types C-c C-y.
  4242. The seventh argument ACTIONS is a list of actions to take
  4243.  if/when the message is sent.  Each action looks like (FUNCTION . ARGS);
  4244.  when the message is sent, we apply FUNCTION to ARGS.
  4245.  This is how Rmail arranges to mark messages `answered'." t nil)
  4246.  
  4247. (autoload (quote mail-other-window) "sendmail" "\
  4248. Like `mail' command, but display mail buffer in another window." t nil)
  4249.  
  4250. (autoload (quote mail-other-frame) "sendmail" "\
  4251. Like `mail' command, but display mail buffer in another frame." t nil)
  4252.  
  4253. (define-key ctl-x-map "m" (quote mail))
  4254.  
  4255. (define-key ctl-x-4-map "m" (quote mail-other-window))
  4256.  
  4257. (define-key ctl-x-5-map "m" (quote mail-other-frame))
  4258.  
  4259. ;;;***
  4260.  
  4261. ;;;### (autoloads (server-start) "server" "server.el" (11332 54913))
  4262. ;;; Generated autoloads from server.el
  4263.  
  4264. (autoload (quote server-start) "server" "\
  4265. Allow this Emacs process to be a server for client processes.
  4266. This starts a server communications subprocess through which
  4267. client \"editors\" can send your editing commands to this Emacs job.
  4268. To use the server, set up the program `etc/emacsclient' in the
  4269. Emacs distribution as your standard \"editor\".
  4270.  
  4271. Prefix arg means just kill any existing server communications subprocess." t nil)
  4272.  
  4273. ;;;***
  4274.  
  4275. ;;;### (autoloads (sgml-mode) "sgml-mode" "sgml-mode.el" (11274 32251))
  4276. ;;; Generated autoloads from sgml-mode.el
  4277.  
  4278. (autoload (quote sgml-mode) "sgml-mode" "\
  4279. Major mode for editing SGML.
  4280. Makes > display the matching <.  Makes / display matching /.
  4281. Use \\[sgml-validate] to validate your document with an SGML parser." t nil)
  4282.  
  4283. ;;;***
  4284.  
  4285. ;;;### (autoloads (shell) "shell" "shell.el" (11336 59243))
  4286. ;;; Generated autoloads from shell.el
  4287.  
  4288. (defvar shell-prompt-pattern "^[^#$%>
  4289. ]*[#$%>] *" "\
  4290. Regexp to match prompts in the inferior shell.
  4291. Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
  4292. This variable is used to initialise `comint-prompt-regexp' in the 
  4293. shell buffer.
  4294.  
  4295. The pattern should probably not match more than one line.  If it does,
  4296. shell-mode may become confused trying to distinguish prompt from input
  4297. on lines which don't start with a prompt.
  4298.  
  4299. This is a fine thing to set in your `.emacs' file.")
  4300.  
  4301. (autoload (quote shell) "shell" "\
  4302. Run an inferior shell, with I/O through buffer *shell*.
  4303. If buffer exists but shell process is not running, make new shell.
  4304. If buffer exists and shell process is running, 
  4305.  just switch to buffer `*shell*'.
  4306. Program used comes from variable `explicit-shell-file-name',
  4307.  or (if that is nil) from the ESHELL environment variable,
  4308.  or else from SHELL if there is no ESHELL.
  4309. If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
  4310.  (Note that this may lose due to a timing error if the shell
  4311.   discards input when it starts up.)
  4312. The buffer is put in Shell mode, giving commands for sending input
  4313. and controlling the subjobs of the shell.  See `shell-mode'.
  4314. See also the variable `shell-prompt-pattern'.
  4315.  
  4316. The shell file name (sans directories) is used to make a symbol name
  4317. such as `explicit-csh-args'.  If that symbol is a variable,
  4318. its value is used as a list of arguments when invoking the shell.
  4319. Otherwise, one argument `-i' is passed to the shell.
  4320.  
  4321. (Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
  4322.  
  4323. ;;;***
  4324.  
  4325. ;;;### (autoloads (sunrise-sunset) "solar" "solar.el" (11310 32522))
  4326. ;;; Generated autoloads from solar.el
  4327.  
  4328. (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\
  4329. *The pseudo-pattern that governs the way a time of day is formatted.
  4330.  
  4331. A pseudo-pattern is a list of expressions that can involve the keywords
  4332. `12-hours', `24-hours', and `minutes',  all numbers in string form,
  4333. and `am-pm' and `time-zone',  both alphabetic strings.
  4334.  
  4335. For example, the form
  4336.  
  4337.   '(24-hours \":\" minutes
  4338.     (if time-zone \" (\") time-zone (if time-zone \")\"))
  4339.  
  4340. would give military-style times like `21:07 (UTC)'.")
  4341.  
  4342. (defvar calendar-latitude nil "\
  4343. *Latitude of `calendar-location-name' in degrees, + north, - south.
  4344. For example, 40.7 for New York City.
  4345. It may not be a good idea to set this in advance for your site;
  4346. if there may be users running Emacs at your site
  4347. who are physically located elsewhere, they would get the wrong
  4348. value and might not know how to override it.")
  4349.  
  4350. (defvar calendar-longitude nil "\
  4351. *Longitude of `calendar-location-name' in degrees, + east, - west.
  4352. For example, -74.0 for New York City.
  4353. It may not be a good idea to set this in advance for your site;
  4354. if there may be users running Emacs at your site
  4355. who are physically located elsewhere, they would get the wrong
  4356. value and might not know how to override it.")
  4357.  
  4358. (defvar calendar-location-name (quote (let ((float-output-format "%.1f")) (format "%s%s, %s%s" (abs calendar-latitude) (if (> calendar-latitude 0) "N" "S") (abs calendar-longitude) (if (> calendar-longitude 0) "E" "W")))) "\
  4359. *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
  4360. Default value is just the latitude, longitude pair.")
  4361.  
  4362. (autoload (quote sunrise-sunset) "solar" "\
  4363. Local time of sunrise and sunset for today.  Accurate to +/- 2 minutes.
  4364. If called with an optional prefix argument, prompts for date.
  4365.  
  4366. If called with an optional double prefix argument, prompts for longitude,
  4367. latitude, time zone, and date.
  4368.  
  4369. This function is suitable for execution in a .emacs file." t nil)
  4370.  
  4371. ;;;***
  4372.  
  4373. ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-float-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines) "sort" "sort.el" (11285 51497))
  4374. ;;; Generated autoloads from sort.el
  4375.  
  4376. (autoload (quote sort-lines) "sort" "\
  4377. Sort lines in region alphabetically; argument means descending order.
  4378. Called from a program, there are three arguments:
  4379. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4380.  
  4381. (autoload (quote sort-paragraphs) "sort" "\
  4382. Sort paragraphs in region alphabetically; argument means descending order.
  4383. Called from a program, there are three arguments:
  4384. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4385.  
  4386. (autoload (quote sort-pages) "sort" "\
  4387. Sort pages in region alphabetically; argument means descending order.
  4388. Called from a program, there are three arguments:
  4389. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4390.  
  4391. (autoload (quote sort-numeric-fields) "sort" "\
  4392. Sort lines in region numerically by the ARGth field of each line.
  4393. Fields are separated by whitespace and numbered from 1 up.
  4394. Specified field must contain a number in each line of the region.
  4395. With a negative arg, sorts by the ARGth field counted from the right.
  4396. Called from a program, there are three arguments:
  4397. FIELD, BEG and END.  BEG and END specify region to sort.
  4398. If you want to sort floating-point numbers, try `sort-float-fields'." t nil)
  4399.  
  4400. (autoload (quote sort-float-fields) "sort" "\
  4401. Sort lines in region numerically by the ARGth field of each line.
  4402. Fields are separated by whitespace and numbered from 1 up.  Specified field
  4403. must contain a floating point number in each line of the region.  With a
  4404. negative arg, sorts by the ARGth field counted from the right.  Called from a
  4405. program, there are three arguments: FIELD, BEG and END.  BEG and END specify
  4406. region to sort." t nil)
  4407.  
  4408. (autoload (quote sort-fields) "sort" "\
  4409. Sort lines in region lexicographically by the ARGth field of each line.
  4410. Fields are separated by whitespace and numbered from 1 up.
  4411. With a negative arg, sorts by the ARGth field counted from the right.
  4412. Called from a program, there are three arguments:
  4413. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  4414.  
  4415. (autoload (quote sort-regexp-fields) "sort" "\
  4416. Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
  4417. RECORD-REGEXP specifies the textual units which should be sorted.
  4418.   For example, to sort lines RECORD-REGEXP would be \"^.*$\"
  4419. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  4420.   is to be used for sorting.
  4421.   If it is \"\\digit\" then the digit'th \"\\(...\\)\" match field from
  4422.   RECORD-REGEXP is used.
  4423.   If it is \"\\&\" then the whole record is used.
  4424.   Otherwise, it is a regular-expression for which to search within the record.
  4425. If a match for KEY is not found within a record then that record is ignored.
  4426.  
  4427. With a negative prefix arg sorts in reverse order.
  4428.  
  4429. For example: to sort lines in the region by the first word on each line
  4430.  starting with the letter \"f\",
  4431.  RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\=\\<f\\w*\\>\"" t nil)
  4432.  
  4433. (autoload (quote sort-columns) "sort" "\
  4434. Sort lines in region alphabetically by a certain range of columns.
  4435. For the purpose of this command, the region includes
  4436. the entire line that point is in and the entire line the mark is in.
  4437. The column positions of point and mark bound the range of columns to sort on.
  4438. A prefix argument means sort into reverse order.
  4439.  
  4440. Note that `sort-columns' rejects text that contains tabs,
  4441. because tabs could be split across the specified columns
  4442. and it doesn't know how to handle that.  Also, when possible,
  4443. it uses the `sort' utility program, which doesn't understand tabs.
  4444. Use \\[untabify] to convert tabs to spaces before sorting." t nil)
  4445.  
  4446. (autoload (quote reverse-region) "sort" "\
  4447. Reverse the order of lines in a region.
  4448. From a program takes two point or marker arguments, BEG and END." t nil)
  4449.  
  4450. ;;;***
  4451.  
  4452. ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "spell.el" (11285 51501))
  4453. ;;; Generated autoloads from spell.el
  4454.  
  4455. (autoload (quote spell-buffer) "spell" "\
  4456. Check spelling of every word in the buffer.
  4457. For each incorrect word, you are asked for the correct spelling
  4458. and then put into a query-replace to fix some or all occurrences.
  4459. If you do not want to change a word, just give the same word
  4460. as its \"correct\" spelling; then the query replace is skipped." t nil)
  4461.  
  4462. (autoload (quote spell-word) "spell" "\
  4463. Check spelling of word at or before point.
  4464. If it is not correct, ask user for the correct spelling
  4465. and `query-replace' the entire buffer to substitute it." t nil)
  4466.  
  4467. (autoload (quote spell-region) "spell" "\
  4468. Like `spell-buffer' but applies only to region.
  4469. Used in a program, applies from START to END.
  4470. DESCRIPTION is an optional string naming the unit being checked:
  4471. for example, \"word\"." t nil)
  4472.  
  4473. (autoload (quote spell-string) "spell" "\
  4474. Check spelling of string supplied as argument." t nil)
  4475.  
  4476. ;;;***
  4477.  
  4478. ;;;### (autoloads (snarf-spooks spook) "spook" "spook.el" (11332 39077))
  4479. ;;; Generated autoloads from spook.el
  4480.  
  4481. (autoload (quote spook) "spook" "\
  4482. Adds that special touch of class to your outgoing mail." t nil)
  4483.  
  4484. (autoload (quote snarf-spooks) "spook" "\
  4485. Return a vector containing the lines from `spook-phrases-file'." nil nil)
  4486.  
  4487. ;;;***
  4488.  
  4489. ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (11202 22548))
  4490. ;;; Generated autoloads from tabify.el
  4491.  
  4492. (autoload (quote untabify) "tabify" "\
  4493. Convert all tabs in region to multiple spaces, preserving columns.
  4494. Called non-interactively, the region is specified by arguments
  4495. START and END, rather than by the position of point and mark.
  4496. The variable `tab-width' controls the spacing of tab stops." t nil)
  4497.  
  4498. (autoload (quote tabify) "tabify" "\
  4499. Convert multiple spaces in region to tabs when possible.
  4500. A group of spaces is partially replaced by tabs
  4501. when this can be done without changing the column they end at.
  4502. Called non-interactively, the region is specified by arguments
  4503. START and END, rather than by the position of point and mark.
  4504. The variable `tab-width' controls the spacing of tab stops." t nil)
  4505.  
  4506. ;;;***
  4507.  
  4508. ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (11336 20101))
  4509. ;;; Generated autoloads from tar-mode.el
  4510.  
  4511. (autoload (quote tar-mode) "tar-mode" "\
  4512. Major mode for viewing a tar file as a dired-like listing of its contents.
  4513. You can move around using the usual cursor motion commands. 
  4514. Letters no longer insert themselves.
  4515. Type 'e' to pull a file out of the tar file and into its own buffer.
  4516. Type 'c' to copy an entry from the tar file into another file on disk.
  4517.  
  4518. If you edit a sub-file of this archive (as with the 'e' command) and 
  4519. save it with Control-X Control-S, the contents of that buffer will be 
  4520. saved back into the tar-file buffer; in this way you can edit a file 
  4521. inside of a tar archive without extracting it and re-archiving it.
  4522.  
  4523. See also: variables tar-update-datestamp and tar-anal-blocksize.
  4524. \\{tar-mode-map}" nil nil)
  4525.  
  4526. ;;;***
  4527.  
  4528. ;;;### (autoloads (rsh telnet) "telnet" "telnet.el" (11283 60253))
  4529. ;;; Generated autoloads from telnet.el
  4530.  
  4531. (autoload (quote telnet) "telnet" "\
  4532. Open a network login connection to host named HOST (a string).
  4533. Communication with HOST is recorded in a buffer *HOST-telnet*.
  4534. Normally input is edited in Emacs and sent a line at a time." t nil)
  4535.  
  4536. (autoload (quote rsh) "telnet" "\
  4537. Open a network login connection to host named HOST (a string).
  4538. Communication with HOST is recorded in a buffer *HOST-rsh*.
  4539. Normally input is edited in Emacs and sent a line at a time." t nil)
  4540.  
  4541. ;;;***
  4542.  
  4543. ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (11285 51534))
  4544. ;;; Generated autoloads from terminal.el
  4545.  
  4546. (autoload (quote terminal-emulator) "terminal" "\
  4547. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  4548. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  4549. BUFFER's contents are made an image of the display generated by that program,
  4550. and any input typed when BUFFER is the current Emacs buffer is sent to that
  4551. program an keyboard input.
  4552.  
  4553. Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
  4554. are parsed from an input-string using your usual shell.
  4555. WIDTH and HEIGHT are determined from the size of the current window
  4556. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  4557.  
  4558. To switch buffers and leave the emulator, or to give commands
  4559. to the emulator itself (as opposed to the program running under it),
  4560. type Control-^.  The following character is an emulator command.
  4561. Type Control-^ twice to send it to the subprogram.
  4562. This escape character may be changed using the variable `terminal-escape-char'.
  4563.  
  4564. `Meta' characters may not currently be sent through the terminal emulator.
  4565.  
  4566. Here is a list of some of the variables which control the behaviour
  4567. of the emulator -- see their documentation for more information:
  4568. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  4569. terminal-redisplay-interval.
  4570.  
  4571. This function calls the value of terminal-mode-hook if that exists
  4572. and is non-nil after the terminal buffer has been set up and the
  4573. subprocess started.
  4574.  
  4575. Presently with `termcap' only; if somebody sends us code to make this
  4576. work with `terminfo' we will try to use it." t nil)
  4577.  
  4578. ;;;***
  4579.  
  4580. ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "tex-mode.el" (11285 51540))
  4581. ;;; Generated autoloads from tex-mode.el
  4582.  
  4583. (defvar tex-shell-file-name nil "\
  4584. *If non-nil, is file name to use for the subshell in which TeX is run.")
  4585.  
  4586. (defvar tex-directory "." "\
  4587. *Directory in which temporary files are left.
  4588. You can make this /tmp if your TEXINPUTS has no relative directories in it
  4589. and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
  4590. \\input commands with relative directories.")
  4591.  
  4592. (defvar tex-offer-save t "\
  4593. *If non-nil, ask about saving modified buffers before \\[tex-file] is run.")
  4594.  
  4595. (defvar tex-run-command "tex" "\
  4596. *Command used to run TeX subjob.
  4597. If this string contains an asterisk (*), it will be replaced by the
  4598. filename; if not, the name of the file, preceded by blank, will be added to
  4599. this string.")
  4600.  
  4601. (defvar latex-run-command "latex" "\
  4602. *Command used to run LaTeX subjob.
  4603. If this string contains an asterisk (*), it will be replaced by the
  4604. filename; if not, the name of the file, preceded by blank, will be added to
  4605. this string.")
  4606.  
  4607. (defvar latex-block-names nil "\
  4608. *User defined LaTeX block names.
  4609. Combined with `standard-latex-block-names' for minibuffer completion.")
  4610.  
  4611. (defvar slitex-run-command "slitex" "\
  4612. *Command used to run SliTeX subjob.
  4613. If this string contains an asterisk (*), it will be replaced by the
  4614. filename; if not, the name of the file, preceded by blank, will be added to
  4615. this string.")
  4616.  
  4617. (defvar tex-bibtex-command "bibtex" "\
  4618. *Command used by `tex-bibtex-file' to gather bibliographic data.
  4619. If this string contains an asterisk (*), it will be replaced by the
  4620. filename; if not, the name of the file, preceded by blank, will be added to
  4621. this string.")
  4622.  
  4623. (defvar tex-dvi-print-command "lpr -d" "\
  4624. *Command used by \\[tex-print] to print a .dvi file.
  4625. If this string contains an asterisk (*), it will be replaced by the
  4626. filename; if not, the name of the file, preceded by blank, will be added to
  4627. this string.")
  4628.  
  4629. (defvar tex-alt-dvi-print-command "lpr -d" "\
  4630. *Command used by \\[tex-print] with a prefix arg to print a .dvi file.
  4631. If this string contains an asterisk (*), it will be replaced by the
  4632. filename; if not, the name of the file, preceded by blank, will be added to
  4633. this string.
  4634.  
  4635. If two printers are not enough of a choice, you can define the value
  4636. of tex-alt-dvi-print-command to be an expression that asks what you want;
  4637. for example,
  4638.  
  4639.     (setq tex-alt-dvi-print-command
  4640.          '(format \"lpr -P%s\" (read-string \"Use printer: \")))
  4641.  
  4642. would tell \\[tex-print] with a prefix argument to ask you which printer to
  4643. use.")
  4644.  
  4645. (defvar tex-dvi-view-command nil "\
  4646. *Command used by \\[tex-view] to display a .dvi file.
  4647. If this string contains an asterisk (*), it will be replaced by the
  4648. filename; if not, the name of the file, preceded by blank, will be added to
  4649. this string.
  4650.  
  4651. This can be set conditionally so that the previewer used is suitable for the
  4652. window system being used.  For example,
  4653.  
  4654.     (setq tex-dvi-view-command
  4655.           (if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\"))
  4656.  
  4657. would tell \\[tex-view] use xdvi under X windows and to use dvi2tty
  4658. otherwise.")
  4659.  
  4660. (defvar tex-show-queue-command "lpq" "\
  4661. *Command used by \\[tex-show-print-queue] to show the print queue.
  4662. Should show the queue(s) that \\[tex-print] puts jobs on.")
  4663.  
  4664. (defvar tex-default-mode (quote plain-tex-mode) "\
  4665. *Mode to enter for a new file that might be either TeX or LaTeX.
  4666. This variable is used when it can't be determined whether the file
  4667. is plain TeX or LaTeX or what because the file contains no commands.
  4668. Normally set to either 'plain-tex-mode or 'latex-mode.")
  4669.  
  4670. (defvar tex-open-quote "``" "\
  4671. *String inserted by typing \\[tex-insert-quote] to open a quotation.")
  4672.  
  4673. (defvar tex-close-quote "''" "\
  4674. *String inserted by typing \\[tex-insert-quote] to close a quotation.")
  4675.  
  4676. (autoload (quote tex-mode) "tex-mode" "\
  4677. Major mode for editing files of input for TeX, LaTeX, or SliTeX.
  4678. Tries to determine (by looking at the beginning of the file) whether
  4679. this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
  4680. latex-mode, or slitex-mode, respectively.  If it cannot be determined,
  4681. such as if there are no commands in the file, the value of tex-default-mode
  4682. is used." t nil)
  4683.  
  4684. (defalias (quote TeX-mode) (quote tex-mode))
  4685.  
  4686. (defalias (quote LaTeX-mode) (quote latex-mode))
  4687.  
  4688. (autoload (quote plain-tex-mode) "tex-mode" "\
  4689. Major mode for editing files of input for plain TeX.
  4690. Makes $ and } display the characters they match.
  4691. Makes \" insert `` when it seems to be the beginning of a quotation,
  4692. and '' when it appears to be the end; it inserts \" only after a \\.
  4693.  
  4694. Use \\[tex-region] to run TeX on the current region, plus a \"header\"
  4695. copied from the top of the file (containing macro definitions, etc.),
  4696. running TeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  4697. \\[tex-file] saves the buffer and then processes the file.
  4698. \\[tex-print] prints the .dvi file made by any of these.
  4699. \\[tex-view] previews the .dvi file made by any of these.
  4700. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  4701.  
  4702. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  4703. mismatched $'s or braces.
  4704.  
  4705. Special commands:
  4706. \\{tex-mode-map}
  4707.  
  4708. Mode variables:
  4709. tex-run-command
  4710.     Command string used by \\[tex-region] or \\[tex-buffer].
  4711. tex-directory
  4712.     Directory in which to create temporary files for TeX jobs
  4713.     run by \\[tex-region] or \\[tex-buffer].
  4714. tex-dvi-print-command
  4715.     Command string used by \\[tex-print] to print a .dvi file.
  4716. tex-alt-dvi-print-command
  4717.     Alternative command string used by \\[tex-print] (when given a prefix
  4718.     argument) to print a .dvi file.
  4719. tex-dvi-view-command
  4720.     Command string used by \\[tex-view] to preview a .dvi file.
  4721. tex-show-queue-command
  4722.     Command string used by \\[tex-show-print-queue] to show the print
  4723.     queue that \\[tex-print] put your job on.
  4724.  
  4725. Entering Plain-tex mode calls the value of `text-mode-hook', then the value
  4726. of `tex-mode-hook', and then the value of `plain-tex-mode-hook'.  When the
  4727. special subshell is initiated, the value of `tex-shell-hook' is called." t nil)
  4728.  
  4729. (defalias (quote plain-TeX-mode) (quote plain-tex-mode))
  4730.  
  4731. (autoload (quote latex-mode) "tex-mode" "\
  4732. Major mode for editing files of input for LaTeX.
  4733. Makes $ and } display the characters they match.
  4734. Makes \" insert `` when it seems to be the beginning of a quotation,
  4735. and '' when it appears to be the end; it inserts \" only after a \\.
  4736.  
  4737. Use \\[tex-region] to run LaTeX on the current region, plus the preamble
  4738. copied from the top of the file (containing \\documentstyle, etc.),
  4739. running LaTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  4740. \\[tex-file] saves the buffer and then processes the file.
  4741. \\[tex-print] prints the .dvi file made by any of these.
  4742. \\[tex-view] previews the .dvi file made by any of these.
  4743. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  4744.  
  4745. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  4746. mismatched $'s or braces.
  4747.  
  4748. Special commands:
  4749. \\{tex-mode-map}
  4750.  
  4751. Mode variables:
  4752. latex-run-command
  4753.     Command string used by \\[tex-region] or \\[tex-buffer].
  4754. tex-directory
  4755.     Directory in which to create temporary files for LaTeX jobs
  4756.     run by \\[tex-region] or \\[tex-buffer].
  4757. tex-dvi-print-command
  4758.     Command string used by \\[tex-print] to print a .dvi file.
  4759. tex-alt-dvi-print-command
  4760.     Alternative command string used by \\[tex-print] (when given a prefix
  4761.     argument) to print a .dvi file.
  4762. tex-dvi-view-command
  4763.     Command string used by \\[tex-view] to preview a .dvi file.
  4764. tex-show-queue-command
  4765.     Command string used by \\[tex-show-print-queue] to show the print
  4766.     queue that \\[tex-print] put your job on.
  4767.  
  4768. Entering Latex mode calls the value of text-mode-hook, then the value of
  4769. tex-mode-hook, and then the value of latex-mode-hook.  When the special
  4770. subshell is initiated, the value of tex-shell-hook is called." t nil)
  4771.  
  4772. ;;;***
  4773.  
  4774. ;;;### (autoloads (texinfo-mode) "texinfo" "texinfo.el" (11336 13830))
  4775. ;;; Generated autoloads from texinfo.el
  4776.  
  4777. (autoload (quote texinfo-mode) "texinfo" "\
  4778. Major mode for editing Texinfo files.
  4779.  
  4780.   It has these extra commands:
  4781. \\{texinfo-mode-map}
  4782.  
  4783.   These are files that are used as input for TeX to make printed manuals
  4784. and also to be turned into Info files with \\[makeinfo-buffer] or
  4785. the `makeinfo' program.  These files must be written in a very restricted and
  4786. modified version of TeX input format.
  4787.  
  4788.   Editing commands are like text-mode except that the syntax table is
  4789. set up so expression commands skip Texinfo bracket groups.  To see
  4790. what the Info version of a region of the Texinfo file will look like,
  4791. use \\[makeinfo-region], which runs `makeinfo' on the current region.
  4792.  
  4793.   You can show the structure of a Texinfo file with \\[texinfo-show-structure].
  4794. This command shows the structure of a Texinfo file by listing the
  4795. lines with the @-sign commands for @chapter, @section, and the like.
  4796. These lines are displayed in another window called the *Occur* window.
  4797. In that window, you can position the cursor over one of the lines and
  4798. use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
  4799. in the Texinfo file.
  4800.  
  4801.   In addition, Texinfo mode provides commands that insert various
  4802. frequently used @-sign commands into the buffer.  You can use these
  4803. commands to save keystrokes.  And you can insert balanced braces with
  4804. \\[texinfo-insert-braces] and later use the command \\[up-list] to
  4805. move forward past the closing brace.
  4806.  
  4807. Also, Texinfo mode provides functions for automatically creating or
  4808. updating menus and node pointers.  These functions
  4809.  
  4810.   * insert the `Next', `Previous' and `Up' pointers of a node,
  4811.   * insert or update the menu for a section, and
  4812.   * create a master menu for a Texinfo source file.
  4813.  
  4814. Here are the functions:
  4815.  
  4816.     texinfo-update-node                \\[texinfo-update-node]
  4817.     texinfo-every-node-update          \\[texinfo-every-node-update]
  4818.     texinfo-sequential-node-update 
  4819.  
  4820.     texinfo-make-menu                  \\[texinfo-make-menu]
  4821.     texinfo-all-menus-update           \\[texinfo-all-menus-update]
  4822.     texinfo-master-menu
  4823.  
  4824.     texinfo-indent-menu-description (column &optional region-p)
  4825.  
  4826. The `texinfo-column-for-description' variable specifies the column to
  4827. which menu descriptions are indented. 
  4828.  
  4829. Passed an argument (a prefix argument, if interactive), the
  4830. `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
  4831. in the region.
  4832.  
  4833. To use the updating commands, you must structure your Texinfo file
  4834. hierarchically, such that each `@node' line, with the exception of the
  4835. Top node, is accompanied by some kind of section line, such as an
  4836. `@chapter' or `@section' line.
  4837.  
  4838. If the file has a `top' node, it must be called `top' or `Top' and
  4839. be the first node in the file.
  4840.  
  4841. Entering Texinfo mode calls the value of text-mode-hook, and then the
  4842. value of texinfo-mode-hook." t nil)
  4843.  
  4844. ;;;***
  4845.  
  4846. ;;;### (autoloads (display-time) "time" "time.el" (11322 20891))
  4847. ;;; Generated autoloads from time.el
  4848.  
  4849. (defvar display-time-day-and-date nil "\
  4850. *Non-nil means \\[display-time] should display day and date as well as time.")
  4851.  
  4852. (autoload (quote display-time) "time" "\
  4853. Display current time, load level, and mail flag in mode line of each buffer.
  4854. Updates automatically every minute.
  4855. If `display-time-day-and-date' is non-nil, the current day and date
  4856. are displayed as well.
  4857. After each update, `display-time-hook' is run with `run-hooks'." t nil)
  4858.  
  4859. ;;;***
  4860.  
  4861. ;;;### (autoloads (run-at-time) "timer" "timer.el" (11285 51562))
  4862. ;;; Generated autoloads from timer.el
  4863.  
  4864. (autoload (quote run-at-time) "timer" "\
  4865. Run a function at a time, and optionally on a regular interval.
  4866. Arguments are TIME, REPEAT, FUNCTION &rest ARGS.
  4867. TIME, a string, can be specified absolutely or relative to now.
  4868. TIME can also be an integer, a number of seconds.
  4869. REPEAT, an integer number of seconds, is the interval on which to repeat
  4870. the call to the function.  If REPEAT is nil, call it just once.
  4871.  
  4872. Absolute times may be specified in a wide variety of formats;
  4873. Something of the form `HOUR:MIN:SEC TIMEZONE MONTH/DAY/YEAR', where
  4874. all fields are numbers, works; the format used by the Unix `date'
  4875. command works too.
  4876.  
  4877. Relative times may be specified as a series of numbers followed by units:
  4878.   1 min             denotes one minute from now.
  4879.   min            does too.
  4880.   1 min 5 sec        denotes 65 seconds from now.
  4881.   1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year
  4882.             denotes the sum of all the given durations from now." t nil)
  4883.  
  4884. ;;;***
  4885.  
  4886. ;;;### (autoloads (tq-create) "tq" "tq.el" (10941 58296))
  4887. ;;; Generated autoloads from tq.el
  4888.  
  4889. (autoload (quote tq-create) "tq" "\
  4890. Create and return a transaction queue communicating with PROCESS.
  4891. PROCESS should be a subprocess capable of sending and receiving
  4892. streams of bytes.  It may be a local process, or it may be connected
  4893. to a tcp server on another machine." nil nil)
  4894.  
  4895. ;;;***
  4896.  
  4897. ;;;### (autoloads (trace-function-background trace-function) "trace" "trace.el" (11256 21938))
  4898. ;;; Generated autoloads from trace.el
  4899.  
  4900. (defvar trace-buffer "*trace-output*" "\
  4901. *Trace output will by default go to that buffer.")
  4902.  
  4903. (autoload (quote trace-function) "trace" "\
  4904. Traces FUNCTION with trace output going to BUFFER.
  4905. For every call of FUNCTION Lisp-style trace messages that display argument
  4906. and return values will be inserted into BUFFER. This function generates the
  4907. trace advice for FUNCTION and activates it together with any other advice
  4908. there might be!! The trace BUFFER will popup whenever FUNCTION is called.
  4909. Do not use this to trace functions that switch buffers or do any other
  4910. display oriented stuff, use `trace-function-background' instead." t nil)
  4911.  
  4912. (autoload (quote trace-function-background) "trace" "\
  4913. Traces FUNCTION with trace output going quietly to BUFFER.
  4914. For every call of FUNCTION Lisp-style trace messages that display argument
  4915. and return values will be inserted into BUFFER. This function generates the
  4916. trace advice for FUNCTION and activates it together with any other advice
  4917. there might be!! Trace output will quietly go to BUFFER without changing
  4918. the window or buffer configuration at all." t nil)
  4919.  
  4920. ;;;***
  4921.  
  4922. ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "two-column.el" (11223 37223))
  4923. ;;; Generated autoloads from two-column.el
  4924.  
  4925. (defvar tc-mode-map nil "\
  4926. Keymap for commands for two-column mode.")
  4927.  
  4928. (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" (quote tc-merge)) (define-key tc-mode-map "2" (quote tc-two-columns)) (define-key tc-mode-map "b" (quote tc-associate-buffer)) (define-key tc-mode-map "e" (quote tc-dissociate)) (define-key tc-mode-map " " (quote tc-recenter)) (define-key tc-mode-map "o" (quote tc-associated-buffer)) (define-key tc-mode-map "s" (quote tc-split)) (define-key tc-mode-map "{" (quote shrink-window-horizontally)) (define-key tc-mode-map "}" (quote enlarge-window-horizontally)) (define-key tc-mode-map " " (quote tc-scroll-up)) (define-key tc-mode-map "" (quote tc-scroll-down)) (define-key tc-mode-map "" (quote tc-scroll-line)))
  4929.  
  4930. (global-set-key "6" tc-mode-map)
  4931.  
  4932. (autoload (quote tc-two-columns) "two-column" "\
  4933. Split current window vertically for two-column editing.
  4934.  
  4935. When called the first time, associates a buffer with the current
  4936. buffer.  Both buffers are put in two-column minor mode and
  4937. tc-mode-hook gets called on both.  These buffers remember
  4938. about one another, even when renamed.
  4939.  
  4940. When called again, restores the screen layout with the current buffer
  4941. first and the associated buffer to it's right.
  4942.  
  4943. If you include long lines, i.e which will span both columns (eg.
  4944. source code), they should be in what will be the first column, with
  4945. the associated buffer having empty lines next to them.
  4946.  
  4947. You have the following commands at your disposal:
  4948.  
  4949. \\[tc-two-columns]   Rearrange screen
  4950. \\[tc-associate-buffer]   Reassociate buffer after changing major mode
  4951. \\[tc-scroll-up]   Scroll both buffers up by a screenfull
  4952. \\[tc-scroll-down]   Scroll both buffers down by a screenful
  4953. \\[tc-scroll-line]   Scroll both buffers up by one or more lines
  4954. \\[tc-recenter]   Recenter and realign other buffer
  4955. \\[shrink-window-horizontally], \\[enlarge-window-horizontally]   Shrink, enlarge current column
  4956. \\[tc-associated-buffer]   Switch to associated buffer
  4957. \\[tc-merge]   Merge both buffers
  4958.  
  4959. These keybindings can be customized in your ~/.emacs by `tc-prefix'
  4960. and `tc-mode-map'.
  4961.  
  4962. The appearance of the screen can be customized by the variables
  4963. `tc-window-width', `tc-beyond-fill-column',
  4964. `tc-mode-line-format' and `truncate-partial-width-windows'." t nil)
  4965.  
  4966. (autoload (quote tc-associate-buffer) "two-column" "\
  4967. Associate another buffer with this one in two-column minor mode.
  4968. Can also be used to associate a just previously visited file, by
  4969. accepting the proposed default buffer.
  4970.  
  4971. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  4972.  
  4973. (autoload (quote tc-split) "two-column" "\
  4974. Unmerge a two-column text into two buffers in two-column minor mode.
  4975. The text is unmerged at the cursor's column which becomes the local
  4976. value of `tc-window-width'.  Only lines that have the ARG same
  4977. preceding characters at that column get split.  The ARG preceding
  4978. characters without any leading whitespace become the local value for
  4979. `tc-separator'.  This way lines that continue across both
  4980. columns remain untouched in the first buffer.
  4981.  
  4982. This function can be used with a prototype line, to set up things as
  4983. you like them.  You write the first line of each column with the
  4984. separator you like and then unmerge that line.  E.g.:
  4985.  
  4986. First column's text    sSs  Second columns text
  4987.                \\___/\\
  4988.             /    \\
  4989.    5 character Separator      You type  M-5 \\[tc-split]  with the point here
  4990.  
  4991. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  4992.  
  4993. (autoload (quote tc-dissociate) "two-column" "\
  4994. Turn off two-column minor mode in current and associated buffer.
  4995. If the associated buffer is unmodified and empty, it is killed." t nil)
  4996.  
  4997. (autoload (quote tc-merge) "two-column" "\
  4998. Merges the associated buffer with the current buffer.
  4999. They get merged at the column, which is the value of
  5000. `tc-window-width', i.e. usually at the vertical window
  5001. separator.  This separator gets replaced with white space.  Beyond
  5002. that the value of gets inserted on merged lines.  The two columns are
  5003. thus pasted side by side, in a single text.  If the other buffer is
  5004. not displayed to the left of this one, then this one becomes the left
  5005. column.
  5006.  
  5007. If you want `tc-separator' on empty lines in the second column,
  5008. you should put just one space in them.  In the final result, you can strip
  5009. off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil)
  5010.  
  5011. (autoload (quote tc-associated-buffer) "two-column" "\
  5012. Switch to associated buffer." t nil)
  5013.  
  5014. (autoload (quote tc-scroll-line) "two-column" "\
  5015. Scroll current window upward by ARG lines.
  5016. The associated window gets scrolled to the same line." t nil)
  5017.  
  5018. (autoload (quote tc-scroll-up) "two-column" "\
  5019. Scroll current window upward by ARG screens.
  5020. The associated window gets scrolled to the same line." t nil)
  5021.  
  5022. (autoload (quote tc-scroll-down) "two-column" "\
  5023. Scroll current window downward by ARG screens.
  5024. The associated window gets scrolled to the same line." t nil)
  5025.  
  5026. (autoload (quote tc-recenter) "two-column" "\
  5027. Center point in window.  With ARG, put point on line ARG.
  5028. This counts from bottom if ARG is negative.  The associated window
  5029. gets scrolled to the same line." t nil)
  5030.  
  5031. ;;;***
  5032.  
  5033. ;;;### (autoloads (ununderline-region underline-region) "underline" "underline.el" (11185 16923))
  5034. ;;; Generated autoloads from underline.el
  5035.  
  5036. (autoload (quote underline-region) "underline" "\
  5037. Underline all nonblank characters in the region.
  5038. Works by overstriking underscores.
  5039. Called from program, takes two arguments START and END
  5040. which specify the range to operate on." t nil)
  5041.  
  5042. (autoload (quote ununderline-region) "underline" "\
  5043. Remove all underlining (overstruck underscores) in the region.
  5044. Called from program, takes two arguments START and END
  5045. which specify the range to operate on." t nil)
  5046.  
  5047. ;;;***
  5048.  
  5049. ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "unrmail.el" (11176 61386))
  5050. ;;; Generated autoloads from unrmail.el
  5051.  
  5052. (autoload (quote batch-unrmail) "unrmail" "\
  5053. Convert Rmail files to mailbox files.
  5054. Specify the input Rmail file names as command line arguments.
  5055. For each Rmail file, the corresponding output file name
  5056. is made by adding `.mail' at the end.
  5057. For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
  5058.  
  5059. (autoload (quote unrmail) "unrmail" "\
  5060. Convert Rmail file FILE to mailbox-format file TO-FILE." t nil)
  5061.  
  5062. ;;;***
  5063.  
  5064. ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "upd-copyr.el" (11086 5246))
  5065. ;;; Generated autoloads from upd-copyr.el
  5066.  
  5067. (defvar replace-copying-with nil "\
  5068. *If non-nil, replace copying notices with this file.")
  5069.  
  5070. (autoload (quote update-copyright) "upd-copyr" "\
  5071. Update the copyright notice at the beginning of the buffer
  5072. to indicate the current year.  If optional arg REPLACE is given
  5073. (interactively, with prefix arg) replace the years in the notice
  5074. rather than adding the current year after them.
  5075. If `replace-copying-with' is set, the copying permissions following the
  5076. copyright are replaced as well.
  5077.  
  5078. If optional third argument ASK is non-nil, the user is prompted for whether
  5079. or not to update the copyright.  If optional fourth argument ASK-YEAR is
  5080. non-nil, the user is prompted for whether or not to replace the year rather
  5081. than adding to it." t nil)
  5082.  
  5083. (autoload (quote ask-to-update-copyright) "upd-copyr" "\
  5084. If the current buffer contains a copyright notice that is out of date,
  5085. ask the user if it should be updated with `update-copyright' (which see).
  5086. Put this on write-file-hooks." nil nil)
  5087.  
  5088. ;;;***
  5089.  
  5090. ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "userlock.el" (10941 47202))
  5091. ;;; Generated autoloads from userlock.el
  5092.  
  5093. (autoload (quote ask-user-about-lock) "userlock" "\
  5094. Ask user what to do when he wants to edit FILE but it is locked by USER.
  5095. This function has a choice of three things to do:
  5096.   do (signal 'buffer-file-locked (list FILE USER))
  5097.     to refrain from editing the file
  5098.   return t (grab the lock on the file)
  5099.   return nil (edit the file even though it is locked).
  5100. You can rewrite it to use any criterion you like to choose which one to do." nil nil)
  5101.  
  5102. (autoload (quote ask-user-about-supersession-threat) "userlock" "\
  5103. Ask a user who is about to modify an obsolete buffer what to do.
  5104. This function has two choices: it can return, in which case the modification
  5105. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  5106. in which case the proposed buffer modification will not be made.
  5107.  
  5108. You can rewrite this to use any criterion you like to choose which one to do.
  5109. The buffer in question is current when this function is called." nil nil)
  5110.  
  5111. ;;;***
  5112.  
  5113. ;;;### (autoloads (vc-update-change-log vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-diff vc-register vc-next-action) "vc" "vc.el" (11321 6270))
  5114. ;;; Generated autoloads from vc.el
  5115.  
  5116. (defvar vc-checkin-hook nil "\
  5117. *List of functions called after a checkin is done.  See `run-hooks'.")
  5118.  
  5119. (autoload (quote vc-next-action) "vc" "\
  5120. Do the next logical checkin or checkout operation on the current file.
  5121.    If the file is not already registered, this registers it for version
  5122. control and then retrieves a writable, locked copy for editing.
  5123.    If the file is registered and not locked by anyone, this checks out
  5124. a writable and locked file ready for editing.
  5125.    If the file is checked out and locked by the calling user, this
  5126. first checks to see if the file has changed since checkout.  If not,
  5127. it performs a revert.
  5128.    If the file has been changed, this pops up a buffer for entry
  5129. of a log message; when the message has been entered, it checks in the
  5130. resulting changes along with the log message as change commentary.  If
  5131. the variable `vc-keep-workfiles' is non-nil (which is its default), a
  5132. read-only copy of the changed file is left in place afterwards.
  5133.    If the file is registered and locked by someone else, you are given
  5134. the option to steal the lock.
  5135.    If you call this from within a VC dired buffer with no files marked,
  5136. it will operate on the file in the current line.
  5137.    If you call this from within a VC dired buffer, and one or more
  5138. files are marked, it will accept a log message and then operate on
  5139. each one.  The log message will be used as a comment for any register
  5140. or checkin operations, but ignored when doing checkouts.  Attempted
  5141. lock steals will raise an error." t nil)
  5142.  
  5143. (autoload (quote vc-register) "vc" "\
  5144. Register the current file into your version-control system." t nil)
  5145.  
  5146. (autoload (quote vc-diff) "vc" "\
  5147. Display diffs between file versions.
  5148. Normally this compares the current file and buffer with the most recent 
  5149. checked in version of that file.  This uses no arguments.
  5150. With a prefix argument, it reads the file name to use
  5151. and two version designators specifying which versions to compare." t nil)
  5152.  
  5153. (autoload (quote vc-insert-headers) "vc" "\
  5154. Insert headers in a file for use with your version-control system.
  5155. Headers desired are inserted at the start of the buffer, and are pulled from
  5156. the variable `vc-header-alist'." t nil)
  5157.  
  5158. (autoload (quote vc-directory) "vc" "\
  5159. Show version-control status of all files under the current directory." t nil)
  5160.  
  5161. (autoload (quote vc-create-snapshot) "vc" "\
  5162. Make a snapshot called NAME.
  5163. The snapshot is made from all registered files at or below the current
  5164. directory.  For each file, the version level of its latest
  5165. version becomes part of the named configuration." t nil)
  5166.  
  5167. (autoload (quote vc-retrieve-snapshot) "vc" "\
  5168. Retrieve the snapshot called NAME.
  5169. This function fails if any files are locked at or below the current directory
  5170. Otherwise, all registered files are checked out (unlocked) at their version
  5171. levels in the snapshot." t nil)
  5172.  
  5173. (autoload (quote vc-print-log) "vc" "\
  5174. List the change log of the current buffer in a window." t nil)
  5175.  
  5176. (autoload (quote vc-revert-buffer) "vc" "\
  5177. Revert the current buffer's file back to the latest checked-in version.
  5178. This asks for confirmation if the buffer contents are not identical
  5179. to that version." t nil)
  5180.  
  5181. (autoload (quote vc-cancel-version) "vc" "\
  5182. Get rid of most recently checked in version of this file.
  5183. A prefix argument means do not revert the buffer afterwards." t nil)
  5184.  
  5185. (autoload (quote vc-update-change-log) "vc" "\
  5186. Find change log file and add entries from recent RCS logs.
  5187. The mark is left at the end of the text prepended to the change log.
  5188. With prefix arg of C-u, only find log entries for the current buffer's file.
  5189. With any numeric prefix arg, find log entries for all files currently visited.
  5190. Otherwise, find log entries for all registered files in the default directory.
  5191. From a program, any arguments are passed to the `rcs2log' script." t nil)
  5192.  
  5193. ;;;***
  5194.  
  5195. ;;;### (autoloads (vi-mode) "vi" "vi.el" (11285 51569))
  5196. ;;; Generated autoloads from vi.el
  5197.  
  5198. (autoload (quote vi-mode) "vi" "\
  5199. Major mode that acts like the `vi' editor.
  5200. The purpose of this mode is to provide you the combined power of vi (namely,
  5201. the \"cross product\" effect of commands and repeat last changes) and Emacs.
  5202.  
  5203. This command redefines nearly all keys to look like vi commands.
  5204. It records the previous major mode, and any vi command for input
  5205. (`i', `a', `s', etc.) switches back to that mode.
  5206. Thus, ordinary Emacs (in whatever major mode you had been using)
  5207. is \"input\" mode as far as vi is concerned.
  5208.  
  5209. To get back into vi from \"input\" mode, you must issue this command again.
  5210. Therefore, it is recommended that you assign it to a key.
  5211.  
  5212. Major differences between this mode and real vi :
  5213.  
  5214. * Limitations and unsupported features
  5215.   - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
  5216.     not supported.
  5217.   - Ex commands are not implemented; try ':' to get some hints.
  5218.   - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
  5219.  
  5220. * Modifications
  5221.   - The stopping positions for some point motion commands (word boundary,
  5222.     pattern search) are slightly different from standard 'vi'.
  5223.     Also, no automatic wrap around at end of buffer for pattern searching.
  5224.   - Since changes are done in two steps (deletion then insertion), you need
  5225.     to undo twice to completely undo a change command.  But this is not needed
  5226.     for undoing a repeated change command.
  5227.   - No need to set/unset 'magic', to search for a string with regular expr
  5228.     in it just put a prefix arg for the search commands.  Replace cmds too.
  5229.   - ^R is bound to incremental backward search, so use ^L to redraw screen.
  5230.  
  5231. * Extensions
  5232.   - Some standard (or modified) Emacs commands were integrated, such as
  5233.     incremental search, query replace, transpose objects, and keyboard macros.
  5234.   - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
  5235.     esc-map or set undefined.  These can give you the full power of Emacs.
  5236.   - See vi-com-map for those keys that are extensions to standard vi, e.g.
  5237.     `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
  5238.     `vi-mark-region', and 'vi-quote-words'.  Some of them are quite handy.
  5239.   - Use \\[vi-switch-mode] to switch among different modes quickly.
  5240.   
  5241. Syntax table and abbrevs while in vi mode remain as they were in Emacs." t nil)
  5242.  
  5243. ;;;***
  5244.  
  5245. ;;;### (autoloads (view-mode view-buffer-other-window view-buffer view-file-other-window view-file) "view" "view.el" (11336 19791))
  5246. ;;; Generated autoloads from view.el
  5247.  
  5248. (autoload (quote view-file) "view" "\
  5249. View FILE in View mode, returning to previous buffer when done.
  5250. The usual Emacs commands are not available; instead,
  5251. a special set of commands (mostly letters and punctuation)
  5252. are defined for moving around in the buffer.
  5253. Space scrolls forward, Delete scrolls backward.
  5254. For list of all View commands, type ? or h while viewing.
  5255.  
  5256. This command runs the normal hook `view-hook'." t nil)
  5257.  
  5258. (autoload (quote view-file-other-window) "view" "\
  5259. View FILE in View mode in other window.
  5260. Return to previous buffer when done.
  5261. The usual Emacs commands are not available; instead,
  5262. a special set of commands (mostly letters and punctuation)
  5263. are defined for moving around in the buffer.
  5264. Space scrolls forward, Delete scrolls backward.
  5265. For list of all View commands, type ? or h while viewing.
  5266.  
  5267. This command runs the normal hook `view-hook'." t nil)
  5268.  
  5269. (autoload (quote view-buffer) "view" "\
  5270. View BUFFER in View mode, returning to previous buffer when done.
  5271. The usual Emacs commands are not available; instead,
  5272. a special set of commands (mostly letters and punctuation)
  5273. are defined for moving around in the buffer.
  5274. Space scrolls forward, Delete scrolls backward.
  5275. For list of all View commands, type ? or h while viewing.
  5276.  
  5277. This command runs the normal hook `view-hook'." t nil)
  5278.  
  5279. (autoload (quote view-buffer-other-window) "view" "\
  5280. View BUFFER in View mode in another window,
  5281. returning to original buffer when done *only* if 
  5282. prefix argument NOT-RETURN is nil (which is the default).
  5283.  
  5284. The usual Emacs commands are not available in View mode; instead,
  5285. a special set of commands (mostly letters and punctuation)
  5286. are defined for moving around in the buffer.
  5287. Space scrolls forward, Delete scrolls backward.
  5288. For list of all View commands, type ? or h while viewing.
  5289.  
  5290. This command runs the normal hook `view-hook'." t nil)
  5291.  
  5292. (autoload (quote view-mode) "view" "\
  5293. Major mode for viewing text but not editing it.
  5294. Letters do not insert themselves.  Instead these commands are provided.
  5295. Most commands take prefix arguments.  Commands dealing with lines
  5296. default to \"scroll size\" lines (initially size of window).
  5297. Search commands default to a repeat count of one.
  5298. M-< or <    move to beginning of buffer.
  5299. M-> or >    move to end of buffer.
  5300. C-v or Space    scroll forward lines.
  5301. M-v or DEL    scroll backward lines.
  5302. CR or LF    scroll forward one line (backward with prefix argument).
  5303. z        like Space except set number of lines for further
  5304.            scrolling commands to scroll by.
  5305. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  5306. =        prints the current line number.
  5307. g        goes to line given by prefix argument.
  5308. / or M-C-s    searches forward for regular expression
  5309. \\ or M-C-r    searches backward for regular expression.
  5310. n        searches forward for last regular expression.
  5311. p        searches backward for last regular expression.
  5312. C-@ or .    set the mark.
  5313. x        exchanges point and mark.
  5314. C-s or s    do forward incremental search.
  5315. C-r or r    do reverse incremental search.
  5316. @ or '        return to mark and pops mark ring.
  5317.           Mark ring is pushed at start of every
  5318.           successful search and when jump to line to occurs.
  5319.           The mark is set on jump to buffer start or end.
  5320. ? or h        provide help message (list of commands).
  5321. \\[Helper-help]        provides help (list of commands or description of a command).
  5322. C-n        moves down lines vertically.
  5323. C-p        moves upward lines vertically.
  5324. C-l        recenters the screen.
  5325. q or C-c    exit view-mode and return to previous buffer.
  5326.  
  5327. Entry to this mode runs the normal hook `view-hook'.
  5328.  
  5329. \\{view-mode-map}" nil nil)
  5330.  
  5331. ;;;***
  5332.  
  5333. ;;;### (autoloads (vip-mode) "vip" "vip.el" (11285 51578))
  5334. ;;; Generated autoloads from vip.el
  5335.  
  5336. (autoload (quote vip-mode) "vip" "\
  5337. Turn on VIP emulation of VI." t nil)
  5338.  
  5339. ;;;***
  5340.  
  5341. ;;;### (autoloads (run-scheme) "xscheme" "xscheme.el" (11185 17047))
  5342. ;;; Generated autoloads from xscheme.el
  5343.  
  5344. (autoload (quote run-scheme) "xscheme" "\
  5345. Run an inferior Scheme process.
  5346. Output goes to the buffer `*scheme*'.
  5347. With argument, asks for a command line." t nil)
  5348.  
  5349. ;;;***
  5350.  
  5351. ;;;### (autoloads (psychoanalyze-pinhead yow) "yow" "yow.el" (11285 51586))
  5352. ;;; Generated autoloads from yow.el
  5353.  
  5354. (autoload (quote yow) "yow" "\
  5355. Return or display a random Zippy quotation." t nil)
  5356.  
  5357. (autoload (quote psychoanalyze-pinhead) "yow" "\
  5358. Zippy goes to the analyst." t nil)
  5359.  
  5360. ;;;***
  5361.  
  5362. ;;; Don't make backup versions of this file - most of it is generated
  5363. ;;; automatically by autoload.el, and what isn't changes rarely.
  5364. ;;; Local Variables:
  5365. ;;; version-control: never
  5366. ;;; no-byte-compile: t
  5367. ;;; no-update-autoloads: t
  5368. ;;; End:
  5369. ;;; loaddefs.el ends here
  5370.